From 9c50fde42843dbfb1df0394164d578cda2c3b82e Mon Sep 17 00:00:00 2001 From: Jochen Topf Date: Mon, 7 Feb 2022 13:59:17 +0100 Subject: [PATCH] Release v2.18.0 --- CHANGELOG.md | 12 +++++++++--- CMakeLists.txt | 4 ++-- include/osmium/version.hpp | 6 +++--- 3 files changed, 14 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5cd644dc..1c2fd663 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,11 +10,16 @@ This project adheres to [Semantic Versioning](https://semver.org/). ### Changed +### Fixed + + +## [2.18.0] - 2022-02-07 + +### Changed + * Use `system_error` instead of `runtime_error` where it fits better. * Remove `OSMIUM_NORETURN` macro. This hasn't been used in a while. -### Fixed - ### Removed deprecated parts of the code Several 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: Doxygen (up to version 1.8.8). This version contains a workaround to fix this. -[unreleased]: https://github.com/osmcode/libosmium/compare/v2.17.3...HEAD +[unreleased]: https://github.com/osmcode/libosmium/compare/v2.18.0...HEAD +[2.18.0]: https://github.com/osmcode/libosmium/compare/v2.17.3...v2.18.0 [2.17.3]: https://github.com/osmcode/libosmium/compare/v2.17.2...v2.17.3 [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 diff --git a/CMakeLists.txt b/CMakeLists.txt index ca67985d..11d75669 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -39,8 +39,8 @@ set(CMAKE_CONFIGURATION_TYPES "Debug;Release;RelWithDebInfo;MinSizeRel;Dev;Cover project(libosmium) set(LIBOSMIUM_VERSION_MAJOR 2) -set(LIBOSMIUM_VERSION_MINOR 17) -set(LIBOSMIUM_VERSION_PATCH 3) +set(LIBOSMIUM_VERSION_MINOR 18) +set(LIBOSMIUM_VERSION_PATCH 0) set(LIBOSMIUM_VERSION "${LIBOSMIUM_VERSION_MAJOR}.${LIBOSMIUM_VERSION_MINOR}.${LIBOSMIUM_VERSION_PATCH}") diff --git a/include/osmium/version.hpp b/include/osmium/version.hpp index 943eb38a..136a1e60 100644 --- a/include/osmium/version.hpp +++ b/include/osmium/version.hpp @@ -34,9 +34,9 @@ DEALINGS IN THE SOFTWARE. */ #define LIBOSMIUM_VERSION_MAJOR 2 -#define LIBOSMIUM_VERSION_MINOR 17 -#define LIBOSMIUM_VERSION_PATCH 3 +#define LIBOSMIUM_VERSION_MINOR 18 +#define LIBOSMIUM_VERSION_PATCH 0 -#define LIBOSMIUM_VERSION_STRING "2.17.3" +#define LIBOSMIUM_VERSION_STRING "2.18.0" #endif // OSMIUM_VERSION_HPP