Skip to content

Commit 9d37530

Browse files
committed
Bump version to 2.3.1
1 parent 7eab3a2 commit 9d37530

File tree

6 files changed

+14
-6
lines changed

6 files changed

+14
-6
lines changed

bumpver.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpver]
2-
current_version = "2.3.1b0"
2+
current_version = "2.3.1"
33
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
44
commit = false
55
tag = false

changelog.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@
66
- support for all GML3 primitives (for IndoorGML): the so-called "Compact Geometries" (http://schemas.opengis.net/gml/3.3/geometryCompact.xsd)
77

88

9+
## [2.3.1] - 2022-09-15
10+
### Changed
11+
- the structure of the report was fixed (it is more flat, as it should have always been), it made little sense for Composite/Multi/Solid
12+
- geometry IDs in the report are 0-based (as they should, a bug made them start at 1, now fixed)
13+
- compilation under Windows to get a binary is now automised with GitHub Actions
14+
15+
16+
917
## [2.3.0] - 2022-03-29
1018
### Added
1119
- val3dity can now be compiled as a library and easily used in other C++ binary (it's GPLv3 license, watch out)

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@
5555
# built documents.
5656
#
5757
# The short X.Y version.
58-
version = u'2.3.1b0'
58+
version = u'2.3.1'
5959
# The full version, including alpha/beta/rc tags.
60-
release = u'2.3.1b0'
60+
release = u'2.3.1'
6161

6262
# The language for content autogenerated by Sphinx. Refer to documentation
6363
# for a list of supported languages.

src/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ using namespace std;
4545
using namespace val3dity;
4646
using json = nlohmann::json;
4747

48-
std::string VAL3DITY_VERSION = "2.3.1b0";
48+
std::string VAL3DITY_VERSION = "2.3.1";
4949

5050

5151
std::string print_summary_validation(std::vector<Feature*>& lsFeatures, IOErrors& ioerrs);

src/val3dity.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
namespace val3dity
3939
{
4040

41-
std::string VAL3DITY_VERSION = "2.3.1b0";
41+
std::string VAL3DITY_VERSION = "2.3.1";
4242

4343
void
4444
validate_no_coutclog(std::vector<Feature*>& lsFeatures,

vcpkg.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "val3dity",
3-
"version-string": "2.3.1b0",
3+
"version-string": "2.3.1",
44
"dependencies": [
55
"boost-program-options",
66
"boost-geometry",

0 commit comments

Comments
 (0)