diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c6375139..25327c8e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,15 @@ This project adheres to [Semantic Versioning](http://semver.org/). ### Added +### Changed + +### Fixed + + +## [2.10.0] - 2016-11-11 + +### Added + - The `Reader` can take an additional optional `read_meta` flag. If this is set to false the PBF input will ignore metadata on OSM objects (like version, timestamp, uid, ...) which speeds up file reading by 10 to 20%. @@ -448,7 +457,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.9.0...HEAD +[unreleased]: https://github.com/osmcode/libosmium/compare/v2.10.0...HEAD +[2.10.0]: https://github.com/osmcode/libosmium/compare/v2.9.0...v2.10.0 [2.9.0]: https://github.com/osmcode/libosmium/compare/v2.8.0...v2.9.0 [2.8.0]: https://github.com/osmcode/libosmium/compare/v2.7.2...v2.8.0 [2.7.2]: https://github.com/osmcode/libosmium/compare/v2.7.1...v2.7.2 diff --git a/CMakeLists.txt b/CMakeLists.txt index 0483b2a91..21cf98e11 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 9) +set(LIBOSMIUM_VERSION_MINOR 10) set(LIBOSMIUM_VERSION_PATCH 0) set(LIBOSMIUM_VERSION diff --git a/include/osmium/version.hpp b/include/osmium/version.hpp index 6f3b0a368..09c576288 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 9 +#define LIBOSMIUM_VERSION_MINOR 10 #define LIBOSMIUM_VERSION_PATCH 0 -#define LIBOSMIUM_VERSION_STRING "2.9.0" +#define LIBOSMIUM_VERSION_STRING "2.10.0" #endif // OSMIUM_VERSION_HPP