Skip to content

Commit

Permalink
Bump to version 2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hugoledoux committed Jun 27, 2023
1 parent e32dfe3 commit 91f1262
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 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.4.0b1"
current_version = "2.4.0"
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
commit = false
tag = false
Expand Down
2 changes: 1 addition & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
- support for all GML3 primitives (for IndoorGML): the so-called "Compact Geometries" (http://schemas.opengis.net/gml/3.3/geometryCompact.xsd)


## [2.4.0] - xxx
## [2.4.0] - 2023-06-27
### Added
- support for [CityJSON Lines (CityJSONL) files](https://www.cityjson.org/specs/#text-sequences-and-streaming-with-cityjsonfeature), the 1st line of the file must be with the `"transform"`, best is to use cjio output
- support for 3D types of [JSON-FG](https://github.com/opengeospatial/ogc-feat-geo-json), only the `Polyhedron` and `MultiPolyhedron` (not for `Prism` and `MultiPrism`) (JSON-FG is still beta, so I guess this might have to change)
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.4.0b1'
version = u'2.4.0'
# The full version, including alpha/beta/rc tags.
release = u'2.4.0b1'
release = u'2.4.0'

# 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.4.0b1";
std::string VAL3DITY_VERSION = "2.4.0";


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 @@ -42,7 +42,7 @@
namespace val3dity
{

std::string VAL3DITY_VERSION = "2.4.0b1";
std::string VAL3DITY_VERSION = "2.4.0";

//-----

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.4.0b1",
"version-string": "2.4.0",
"dependencies": [
"boost-program-options",
"boost-geometry",
Expand Down

0 comments on commit 91f1262

Please sign in to comment.