Skip to content

Commit

Permalink
Release v2.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joto committed Jan 8, 2021
1 parent a91eac6 commit 46c0639
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 6 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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}")
Expand Down
6 changes: 3 additions & 3 deletions include/osmium/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 46c0639

Please sign in to comment.