Skip to content

Commit

Permalink
Bump to v2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hugoledoux committed Jul 17, 2024
1 parent 5350e48 commit 055c3e7
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.5.0b2"
current_version = "2.5.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 @@ -5,7 +5,7 @@
- validation of topological relationships between features, eg ensuring that buildings in a city do not overlap


## [2.5.0] -
## [2.5.0] - 2024-07-17
### Added
- 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
- a new error was added: error 905--INVALID_JSON for handling wrong JSON lines in a CityJSONSeq stream
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.5.0b2'
version = u'2.5.0'
# The full version, including alpha/beta/rc tags.
release = u'2.5.0b2'
release = u'2.5.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 @@ -48,7 +48,7 @@ using namespace std;
using namespace val3dity;
using json = nlohmann::json;

std::string VAL3DITY_VERSION = "2.5.0b2";
std::string VAL3DITY_VERSION = "2.5.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 @@ -43,7 +43,7 @@
namespace val3dity
{

std::string VAL3DITY_VERSION = "2.5.0b2";
std::string VAL3DITY_VERSION = "2.5.0";

struct verror : std::exception {
std::string whattext;
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.5.0b2",
"version-string": "2.5.0",
"dependencies": [
"boost-program-options",
"boost-geometry",
Expand Down

0 comments on commit 055c3e7

Please sign in to comment.