From 46c06392870da3d0f9816e2c5676e6dc82fc5a64 Mon Sep 17 00:00:00 2001 From: Jochen Topf Date: Fri, 8 Jan 2021 14:48:46 +0100 Subject: [PATCH] Release v2.16.0 --- CHANGELOG.md | 12 +++++++++++- CMakeLists.txt | 4 ++-- include/osmium/version.hpp | 6 +++--- 3 files changed, 16 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f87bf25e..192d17293 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,15 @@ This project adheres to [Semantic Versioning](https://semver.org/). ### Added +### Changed + +### Fixed + + +## [2.16.0] - 2021-01-08 + +### Added + * The PBF reader and writer now understand PBF blobs compressed with the LZ4 compression algorithm in addition to the usual ZLIB compression (or no compression at all). LZ4 is much faster to compress and uncompress. Use @@ -1052,7 +1061,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.15.6...HEAD +[unreleased]: https://github.com/osmcode/libosmium/compare/v2.16.0...HEAD +[2.16.0]: https://github.com/osmcode/libosmium/compare/v2.15.6...v2.16.0 [2.15.6]: https://github.com/osmcode/libosmium/compare/v2.15.5...v2.15.6 [2.15.5]: https://github.com/osmcode/libosmium/compare/v2.15.4...v2.15.5 [2.15.4]: https://github.com/osmcode/libosmium/compare/v2.15.3...v2.15.4 diff --git a/CMakeLists.txt b/CMakeLists.txt index 45afb707c..c7581b461 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 15) -set(LIBOSMIUM_VERSION_PATCH 6) +set(LIBOSMIUM_VERSION_MINOR 16) +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 13dd7eeea..8696c6848 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 15 -#define LIBOSMIUM_VERSION_PATCH 6 +#define LIBOSMIUM_VERSION_MINOR 16 +#define LIBOSMIUM_VERSION_PATCH 0 -#define LIBOSMIUM_VERSION_STRING "2.15.6" +#define LIBOSMIUM_VERSION_STRING "2.16.0" #endif // OSMIUM_VERSION_HPP