Skip to content

Commit

Permalink
Release v2.17.2
Browse files Browse the repository at this point in the history
  • Loading branch information
joto committed Dec 16, 2021
1 parent 55f2a94 commit 9e709fe
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ This project adheres to [Semantic Versioning](https://semver.org/).

### Changed

### Fixed


## [2.17.2] - 2021-12-16

### Changed

* Libosmium now supports being compiled in C++17 and C++20 mode. The minimum
version required is still C++11, but if you use libosmium in an C++17 or
C++20 application this should work properly.
Expand Down Expand Up @@ -1201,7 +1208,8 @@ long time. These will not be part of the next version of libosmium:
Doxygen (up to version 1.8.8). This version contains a workaround to fix
this.

[unreleased]: https://github.com/osmcode/libosmium/compare/v2.17.1...HEAD
[unreleased]: https://github.com/osmcode/libosmium/compare/v2.17.2...HEAD
[2.17.2]: https://github.com/osmcode/libosmium/compare/v2.17.1...v2.17.2
[2.17.1]: https://github.com/osmcode/libosmium/compare/v2.17.0...v2.17.1
[2.17.0]: https://github.com/osmcode/libosmium/compare/v2.16.0...v2.17.0
[2.16.0]: https://github.com/osmcode/libosmium/compare/v2.15.6...v2.16.0
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ project(libosmium)

set(LIBOSMIUM_VERSION_MAJOR 2)
set(LIBOSMIUM_VERSION_MINOR 17)
set(LIBOSMIUM_VERSION_PATCH 1)
set(LIBOSMIUM_VERSION_PATCH 2)

set(LIBOSMIUM_VERSION
"${LIBOSMIUM_VERSION_MAJOR}.${LIBOSMIUM_VERSION_MINOR}.${LIBOSMIUM_VERSION_PATCH}")
Expand Down
4 changes: 2 additions & 2 deletions include/osmium/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ DEALINGS IN THE SOFTWARE.

#define LIBOSMIUM_VERSION_MAJOR 2
#define LIBOSMIUM_VERSION_MINOR 17
#define LIBOSMIUM_VERSION_PATCH 1
#define LIBOSMIUM_VERSION_PATCH 2

#define LIBOSMIUM_VERSION_STRING "2.17.1"
#define LIBOSMIUM_VERSION_STRING "2.17.2"

#endif // OSMIUM_VERSION_HPP

0 comments on commit 9e709fe

Please sign in to comment.