Skip to content

Commit

Permalink
Bump to v2.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
hugoledoux committed Oct 2, 2024
1 parent f3eaeb7 commit db77bc6
Show file tree
Hide file tree
Showing 6 changed files with 11 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.5.0"
current_version = "2.5.1"
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
commit = false
tag = false
Expand Down
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@
## [Unreleased]
- validation of topological relationships between features, eg ensuring that buildings in a city do not overlap

## [2.5.1] - 2024-10-02
### Changed
- CGAL 6.0 can be used (small changes to the `CMakeLists.txt`)
- fix a buggy report for complex geom types
- improves the description of the validation report in the docs

## [2.5.0] - 2024-07-17
### Added
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.0'
version = u'2.5.1'
# The full version, including alpha/beta/rc tags.
release = u'2.5.0'
release = u'2.5.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 @@ -48,7 +48,7 @@ using namespace std;
using namespace val3dity;
using json = nlohmann::json;

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

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

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

0 comments on commit db77bc6

Please sign in to comment.