Skip to content

Commit 055c3e7

Browse files
committed
Bump to v2.5.0
1 parent 5350e48 commit 055c3e7

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.5.0b2"
2+
current_version = "2.5.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
@@ -5,7 +5,7 @@
55
- validation of topological relationships between features, eg ensuring that buildings in a city do not overlap
66

77

8-
## [2.5.0] -
8+
## [2.5.0] - 2024-07-17
99
### Added
1010
- val3dity now accepts a stream of CityJSONSeq as input from stdin: `cat myfile.jsonl | val3dity stdin` and it validates each line and outputs the result to stdout
1111
- a new error was added: error 905--INVALID_JSON for handling wrong JSON lines in a CityJSONSeq stream

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.5.0b2'
58+
version = u'2.5.0'
5959
# The full version, including alpha/beta/rc tags.
60-
release = u'2.5.0b2'
60+
release = u'2.5.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
@@ -48,7 +48,7 @@ using namespace std;
4848
using namespace val3dity;
4949
using json = nlohmann::json;
5050

51-
std::string VAL3DITY_VERSION = "2.5.0b2";
51+
std::string VAL3DITY_VERSION = "2.5.0";
5252

5353

5454
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
@@ -43,7 +43,7 @@
4343
namespace val3dity
4444
{
4545

46-
std::string VAL3DITY_VERSION = "2.5.0b2";
46+
std::string VAL3DITY_VERSION = "2.5.0";
4747

4848
struct verror : std::exception {
4949
std::string whattext;

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

0 commit comments

Comments
 (0)