From 8537ab58af71d648cd8dbaa40fbda9430303639b Mon Sep 17 00:00:00 2001 From: Jochen Topf Date: Tue, 15 Aug 2017 14:40:02 +0200 Subject: [PATCH] Release v2.13.0 --- CHANGELOG.md | 13 ++++++++++++- CMakeLists.txt | 4 ++-- include/osmium/version.hpp | 6 +++--- 3 files changed, 17 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index deaecf105..9d90ae317 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,15 @@ This project adheres to [Semantic Versioning](http://semver.org/). ### Added +### Changed + +### Fixed + + +## [2.13.0] - 2017-08-15 + +### Added + - New `RelationsManager` class superseeds the `relations::Collector` class. The new class is much more modular and easier to extend. If you are using the Collector class, you are encouraged to switch. @@ -73,6 +82,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). - In the example `osmium_location_cache_create`, the index file written is always truncated first. + ## [2.12.2] - 2017-05-03 ### Added @@ -700,7 +710,8 @@ 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.12.2...HEAD +[unreleased]: https://github.com/osmcode/libosmium/compare/v2.13.0...HEAD +[2.13.0]: https://github.com/osmcode/libosmium/compare/v2.12.2...v2.13.0 [2.12.2]: https://github.com/osmcode/libosmium/compare/v2.12.1...v2.12.2 [2.12.1]: https://github.com/osmcode/libosmium/compare/v2.12.0...v2.12.1 [2.12.0]: https://github.com/osmcode/libosmium/compare/v2.11.0...v2.12.0 diff --git a/CMakeLists.txt b/CMakeLists.txt index dc39f2cd3..3c5e62fa4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -24,8 +24,8 @@ set(CMAKE_CONFIGURATION_TYPES "Debug;Release;RelWithDebInfo;MinSizeRel;Dev;Cover project(libosmium) set(LIBOSMIUM_VERSION_MAJOR 2) -set(LIBOSMIUM_VERSION_MINOR 12) -set(LIBOSMIUM_VERSION_PATCH 2) +set(LIBOSMIUM_VERSION_MINOR 13) +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 5f3b10eff..eb1aa363e 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 12 -#define LIBOSMIUM_VERSION_PATCH 2 +#define LIBOSMIUM_VERSION_MINOR 13 +#define LIBOSMIUM_VERSION_PATCH 0 -#define LIBOSMIUM_VERSION_STRING "2.12.2" +#define LIBOSMIUM_VERSION_STRING "2.13.0" #endif // OSMIUM_VERSION_HPP