From 26906688962830bfc1c0720722a22bf40e18399c Mon Sep 17 00:00:00 2001 From: Jochen Topf Date: Mon, 23 Jul 2018 09:39:19 +0200 Subject: [PATCH] Release v2.14.1 --- CHANGELOG.md | 10 +++++++++- CMakeLists.txt | 2 +- include/osmium/version.hpp | 4 ++-- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a611160e6..9d5da6d35 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,13 @@ This project adheres to [Semantic Versioning](https://semver.org/). ### Changed +### Fixed + + +## [2.14.1] - 2018-07-23 + +### Changed + * Libosmium now needs the newest Protozero version 1.6.3. * Removes dependency on the utfcpp library for conversions between Unicode code points and UTF-8. We have our own functions for this now. This also @@ -854,7 +861,8 @@ This project adheres to [Semantic Versioning](https://semver.org/). Doxygen (up to version 1.8.8). This version contains a workaround to fix this. -[unreleased]: https://github.com/osmcode/libosmium/compare/v2.14.0...HEAD +[unreleased]: https://github.com/osmcode/libosmium/compare/v2.14.1...HEAD +[2.14.1]: https://github.com/osmcode/libosmium/compare/v2.14.0...v2.14.1 [2.14.0]: https://github.com/osmcode/libosmium/compare/v2.13.1...v2.14.0 [2.13.1]: https://github.com/osmcode/libosmium/compare/v2.13.0...v2.13.1 [2.13.0]: https://github.com/osmcode/libosmium/compare/v2.12.2...v2.13.0 diff --git a/CMakeLists.txt b/CMakeLists.txt index f956dfab6..d7bfed6d5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -25,7 +25,7 @@ project(libosmium) set(LIBOSMIUM_VERSION_MAJOR 2) set(LIBOSMIUM_VERSION_MINOR 14) -set(LIBOSMIUM_VERSION_PATCH 0) +set(LIBOSMIUM_VERSION_PATCH 1) 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 57fca6212..145db4245 100644 --- a/include/osmium/version.hpp +++ b/include/osmium/version.hpp @@ -35,8 +35,8 @@ DEALINGS IN THE SOFTWARE. #define LIBOSMIUM_VERSION_MAJOR 2 #define LIBOSMIUM_VERSION_MINOR 14 -#define LIBOSMIUM_VERSION_PATCH 0 +#define LIBOSMIUM_VERSION_PATCH 1 -#define LIBOSMIUM_VERSION_STRING "2.14.0" +#define LIBOSMIUM_VERSION_STRING "2.14.1" #endif // OSMIUM_VERSION_HPP