Skip to content

Commit db77bc6

Browse files
committed
Bump to v2.5.1
1 parent f3eaeb7 commit db77bc6

File tree

6 files changed

+11
-6
lines changed

6 files changed

+11
-6
lines changed

bumpver.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpver]
2-
current_version = "2.5.0"
2+
current_version = "2.5.1"
33
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
44
commit = false
55
tag = false

changelog.md

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44
## [Unreleased]
55
- validation of topological relationships between features, eg ensuring that buildings in a city do not overlap
66

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

813
## [2.5.0] - 2024-07-17
914
### Added

docs/conf.py

+2-2
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.0'
58+
version = u'2.5.1'
5959
# The full version, including alpha/beta/rc tags.
60-
release = u'2.5.0'
60+
release = u'2.5.1'
6161

6262
# The language for content autogenerated by Sphinx. Refer to documentation
6363
# for a list of supported languages.

src/main.cpp

+1-1
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.0";
51+
std::string VAL3DITY_VERSION = "2.5.1";
5252

5353

5454
std::string print_summary_validation(std::vector<Feature*>& lsFeatures, IOErrors& ioerrs);

src/val3dity.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
namespace val3dity
4444
{
4545

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

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

vcpkg.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "val3dity",
3-
"version-string": "2.5.0",
3+
"version-string": "2.5.1",
44
"dependencies": [
55
"boost-program-options",
66
"boost-geometry",

0 commit comments

Comments
 (0)