From cc1a090ac25cacc49afbce808355912f391727a0 Mon Sep 17 00:00:00 2001 From: Jochen Topf Date: Tue, 7 Mar 2017 13:51:05 +0100 Subject: [PATCH] Release v2.12.0 --- CHANGELOG.md | 13 ++++++++++++- CMakeLists.txt | 2 +- include/osmium/version.hpp | 4 ++-- 3 files changed, 15 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a5cdbab8a..011a16973 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,15 @@ This project adheres to [Semantic Versioning](http://semver.org/). ### Added +### Changed + +### Fixed + + +## [2.12.0] - 2017-03-07 + +### Added + - `TagMatcher` and `TagsFilter` classes for more flexibly matching tags and selecting objects based on tags. This obsoletes the less flexible classes based on `osmium::tags::Filter` classes. @@ -572,7 +581,9 @@ This project adheres to [Semantic Versioning](http://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.10.3...HEAD +[unreleased]: https://github.com/osmcode/libosmium/compare/v2.12.0...HEAD +[2.12.0]: https://github.com/osmcode/libosmium/compare/v2.11.0...v2.12.0 +[2.11.0]: https://github.com/osmcode/libosmium/compare/v2.10.3...v2.11.0 [2.10.3]: https://github.com/osmcode/libosmium/compare/v2.10.2...v2.10.3 [2.10.2]: https://github.com/osmcode/libosmium/compare/v2.10.1...v2.10.2 [2.10.1]: https://github.com/osmcode/libosmium/compare/v2.10.0...v2.10.1 diff --git a/CMakeLists.txt b/CMakeLists.txt index 9dbee91ab..13de6a297 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -24,7 +24,7 @@ set(CMAKE_CONFIGURATION_TYPES "Debug;Release;RelWithDebInfo;MinSizeRel;Dev;Cover project(libosmium) set(LIBOSMIUM_VERSION_MAJOR 2) -set(LIBOSMIUM_VERSION_MINOR 11) +set(LIBOSMIUM_VERSION_MINOR 12) set(LIBOSMIUM_VERSION_PATCH 0) set(LIBOSMIUM_VERSION diff --git a/include/osmium/version.hpp b/include/osmium/version.hpp index d32641a55..c5e820424 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 11 +#define LIBOSMIUM_VERSION_MINOR 12 #define LIBOSMIUM_VERSION_PATCH 0 -#define LIBOSMIUM_VERSION_STRING "2.11.0" +#define LIBOSMIUM_VERSION_STRING "2.12.0" #endif // OSMIUM_VERSION_HPP