Skip to content

Commit 9e709fe

Browse files
committed
Release v2.17.2
1 parent 55f2a94 commit 9e709fe

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,13 @@ This project adheres to [Semantic Versioning](https://semver.org/).
1010

1111
### Changed
1212

13+
### Fixed
14+
15+
16+
## [2.17.2] - 2021-12-16
17+
18+
### Changed
19+
1320
* Libosmium now supports being compiled in C++17 and C++20 mode. The minimum
1421
version required is still C++11, but if you use libosmium in an C++17 or
1522
C++20 application this should work properly.
@@ -1201,7 +1208,8 @@ long time. These will not be part of the next version of libosmium:
12011208
Doxygen (up to version 1.8.8). This version contains a workaround to fix
12021209
this.
12031210

1204-
[unreleased]: https://github.com/osmcode/libosmium/compare/v2.17.1...HEAD
1211+
[unreleased]: https://github.com/osmcode/libosmium/compare/v2.17.2...HEAD
1212+
[2.17.2]: https://github.com/osmcode/libosmium/compare/v2.17.1...v2.17.2
12051213
[2.17.1]: https://github.com/osmcode/libosmium/compare/v2.17.0...v2.17.1
12061214
[2.17.0]: https://github.com/osmcode/libosmium/compare/v2.16.0...v2.17.0
12071215
[2.16.0]: https://github.com/osmcode/libosmium/compare/v2.15.6...v2.16.0

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ project(libosmium)
4040

4141
set(LIBOSMIUM_VERSION_MAJOR 2)
4242
set(LIBOSMIUM_VERSION_MINOR 17)
43-
set(LIBOSMIUM_VERSION_PATCH 1)
43+
set(LIBOSMIUM_VERSION_PATCH 2)
4444

4545
set(LIBOSMIUM_VERSION
4646
"${LIBOSMIUM_VERSION_MAJOR}.${LIBOSMIUM_VERSION_MINOR}.${LIBOSMIUM_VERSION_PATCH}")

include/osmium/version.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ DEALINGS IN THE SOFTWARE.
3535

3636
#define LIBOSMIUM_VERSION_MAJOR 2
3737
#define LIBOSMIUM_VERSION_MINOR 17
38-
#define LIBOSMIUM_VERSION_PATCH 1
38+
#define LIBOSMIUM_VERSION_PATCH 2
3939

40-
#define LIBOSMIUM_VERSION_STRING "2.17.1"
40+
#define LIBOSMIUM_VERSION_STRING "2.17.2"
4141

4242
#endif // OSMIUM_VERSION_HPP

0 commit comments

Comments
 (0)