File tree Expand file tree Collapse file tree 3 files changed +14
-8
lines changed Expand file tree Collapse file tree 3 files changed +14
-8
lines changed Original file line number Diff line number Diff line change @@ -10,11 +10,16 @@ This project adheres to [Semantic Versioning](https://semver.org/).
1010
1111### Changed
1212
13+ ### Fixed
14+
15+
16+ ## [ 2.18.0] - 2022-02-07
17+
18+ ### Changed
19+
1320* Use ` system_error ` instead of ` runtime_error ` where it fits better.
1421* Remove ` OSMIUM_NORETURN ` macro. This hasn't been used in a while.
1522
16- ### Fixed
17-
1823### Removed deprecated parts of the code
1924
2025Several parts of libosmium have been marked deprecated, many of them for a very
@@ -1248,7 +1253,8 @@ long time. These will not be part of the next version of libosmium:
12481253 Doxygen (up to version 1.8.8). This version contains a workaround to fix
12491254 this.
12501255
1251- [ unreleased ] : https://github.com/osmcode/libosmium/compare/v2.17.3...HEAD
1256+ [ unreleased ] : https://github.com/osmcode/libosmium/compare/v2.18.0...HEAD
1257+ [ 2.18.0 ] : https://github.com/osmcode/libosmium/compare/v2.17.3...v2.18.0
12521258[ 2.17.3 ] : https://github.com/osmcode/libosmium/compare/v2.17.2...v2.17.3
12531259[ 2.17.2 ] : https://github.com/osmcode/libosmium/compare/v2.17.1...v2.17.2
12541260[ 2.17.1 ] : https://github.com/osmcode/libosmium/compare/v2.17.0...v2.17.1
Original file line number Diff line number Diff line change @@ -39,8 +39,8 @@ set(CMAKE_CONFIGURATION_TYPES "Debug;Release;RelWithDebInfo;MinSizeRel;Dev;Cover
3939project (libosmium)
4040
4141set (LIBOSMIUM_VERSION_MAJOR 2)
42- set (LIBOSMIUM_VERSION_MINOR 17 )
43- set (LIBOSMIUM_VERSION_PATCH 3 )
42+ set (LIBOSMIUM_VERSION_MINOR 18 )
43+ set (LIBOSMIUM_VERSION_PATCH 0 )
4444
4545set (LIBOSMIUM_VERSION
4646 "${LIBOSMIUM_VERSION_MAJOR} .${LIBOSMIUM_VERSION_MINOR} .${LIBOSMIUM_VERSION_PATCH} " )
Original file line number Diff line number Diff line change @@ -34,9 +34,9 @@ DEALINGS IN THE SOFTWARE.
3434*/
3535
3636#define LIBOSMIUM_VERSION_MAJOR 2
37- #define LIBOSMIUM_VERSION_MINOR 17
38- #define LIBOSMIUM_VERSION_PATCH 3
37+ #define LIBOSMIUM_VERSION_MINOR 18
38+ #define LIBOSMIUM_VERSION_PATCH 0
3939
40- #define LIBOSMIUM_VERSION_STRING " 2.17.3 "
40+ #define LIBOSMIUM_VERSION_STRING " 2.18.0 "
4141
4242#endif // OSMIUM_VERSION_HPP
You can’t perform that action at this time.
0 commit comments