Skip to content

Commit 91f1262

Browse files
committed
Bump to version 2.4.0
1 parent e32dfe3 commit 91f1262

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
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.4.0b1"
2+
current_version = "2.4.0"
33
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
44
commit = false
55
tag = false

changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
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.4.0] - xxx
9+
## [2.4.0] - 2023-06-27
1010
### Added
1111
- 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
1212
- 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)

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.4.0b1'
58+
version = u'2.4.0'
5959
# The full version, including alpha/beta/rc tags.
60-
release = u'2.4.0b1'
60+
release = u'2.4.0'
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.4.0b1";
48+
std::string VAL3DITY_VERSION = "2.4.0";
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
@@ -42,7 +42,7 @@
4242
namespace val3dity
4343
{
4444

45-
std::string VAL3DITY_VERSION = "2.4.0b1";
45+
std::string VAL3DITY_VERSION = "2.4.0";
4646

4747
//-----
4848

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.4.0b1",
3+
"version-string": "2.4.0",
44
"dependencies": [
55
"boost-program-options",
66
"boost-geometry",

0 commit comments

Comments
 (0)