Skip to content

Commit

Permalink
Bump version to 2.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
hugoledoux committed Sep 15, 2022
1 parent 7eab3a2 commit 9d37530
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bumpver.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpver]
current_version = "2.3.1b0"
current_version = "2.3.1"
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
commit = false
tag = false
Expand Down
8 changes: 8 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@
- support for all GML3 primitives (for IndoorGML): the so-called "Compact Geometries" (http://schemas.opengis.net/gml/3.3/geometryCompact.xsd)


## [2.3.1] - 2022-09-15
### Changed
- 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
- geometry IDs in the report are 0-based (as they should, a bug made them start at 1, now fixed)
- compilation under Windows to get a binary is now automised with GitHub Actions



## [2.3.0] - 2022-03-29
### Added
- val3dity can now be compiled as a library and easily used in other C++ binary (it's GPLv3 license, watch out)
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@
# built documents.
#
# The short X.Y version.
version = u'2.3.1b0'
version = u'2.3.1'
# The full version, including alpha/beta/rc tags.
release = u'2.3.1b0'
release = u'2.3.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ using namespace std;
using namespace val3dity;
using json = nlohmann::json;

std::string VAL3DITY_VERSION = "2.3.1b0";
std::string VAL3DITY_VERSION = "2.3.1";


std::string print_summary_validation(std::vector<Feature*>& lsFeatures, IOErrors& ioerrs);
Expand Down
2 changes: 1 addition & 1 deletion src/val3dity.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
namespace val3dity
{

std::string VAL3DITY_VERSION = "2.3.1b0";
std::string VAL3DITY_VERSION = "2.3.1";

void
validate_no_coutclog(std::vector<Feature*>& lsFeatures,
Expand Down
2 changes: 1 addition & 1 deletion vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "val3dity",
"version-string": "2.3.1b0",
"version-string": "2.3.1",
"dependencies": [
"boost-program-options",
"boost-geometry",
Expand Down

0 comments on commit 9d37530

Please sign in to comment.