From ce865381fb752323ff1e66181f5a49b7f500ffa3 Mon Sep 17 00:00:00 2001 From: Jochen Topf Date: Fri, 25 Aug 2017 13:26:23 +0200 Subject: [PATCH] Release v2.13.1 --- CHANGELOG.md | 12 +++++++++++- CMakeLists.txt | 2 +- include/osmium/version.hpp | 4 ++-- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 841721267..2493e0af8 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.1] - 2017-08-25 + +### Added + - New "blackhole" file format which throws away all data written into it. Used for benchmarking. @@ -730,7 +739,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.13.0...HEAD +[unreleased]: https://github.com/osmcode/libosmium/compare/v2.13.1...HEAD +[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 [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 diff --git a/CMakeLists.txt b/CMakeLists.txt index 3c5e62fa4..e27887590 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -25,7 +25,7 @@ project(libosmium) set(LIBOSMIUM_VERSION_MAJOR 2) set(LIBOSMIUM_VERSION_MINOR 13) -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 eb1aa363e..004ad0ed4 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 13 -#define LIBOSMIUM_VERSION_PATCH 0 +#define LIBOSMIUM_VERSION_PATCH 1 -#define LIBOSMIUM_VERSION_STRING "2.13.0" +#define LIBOSMIUM_VERSION_STRING "2.13.1" #endif // OSMIUM_VERSION_HPP