Skip to content

Commit 46c0639

Browse files
committed
Release v2.16.0
1 parent a91eac6 commit 46c0639

File tree

3 files changed

+16
-6
lines changed

3 files changed

+16
-6
lines changed

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,15 @@ This project adheres to [Semantic Versioning](https://semver.org/).
88

99
### Added
1010

11+
### Changed
12+
13+
### Fixed
14+
15+
16+
## [2.16.0] - 2021-01-08
17+
18+
### Added
19+
1120
* The PBF reader and writer now understand PBF blobs compressed with the LZ4
1221
compression algorithm in addition to the usual ZLIB compression (or no
1322
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/).
10521061
Doxygen (up to version 1.8.8). This version contains a workaround to fix
10531062
this.
10541063

1055-
[unreleased]: https://github.com/osmcode/libosmium/compare/v2.15.6...HEAD
1064+
[unreleased]: https://github.com/osmcode/libosmium/compare/v2.16.0...HEAD
1065+
[2.16.0]: https://github.com/osmcode/libosmium/compare/v2.15.6...v2.16.0
10561066
[2.15.6]: https://github.com/osmcode/libosmium/compare/v2.15.5...v2.15.6
10571067
[2.15.5]: https://github.com/osmcode/libosmium/compare/v2.15.4...v2.15.5
10581068
[2.15.4]: https://github.com/osmcode/libosmium/compare/v2.15.3...v2.15.4

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ set(CMAKE_CONFIGURATION_TYPES "Debug;Release;RelWithDebInfo;MinSizeRel;Dev;Cover
3939
project(libosmium)
4040

4141
set(LIBOSMIUM_VERSION_MAJOR 2)
42-
set(LIBOSMIUM_VERSION_MINOR 15)
43-
set(LIBOSMIUM_VERSION_PATCH 6)
42+
set(LIBOSMIUM_VERSION_MINOR 16)
43+
set(LIBOSMIUM_VERSION_PATCH 0)
4444

4545
set(LIBOSMIUM_VERSION
4646
"${LIBOSMIUM_VERSION_MAJOR}.${LIBOSMIUM_VERSION_MINOR}.${LIBOSMIUM_VERSION_PATCH}")

include/osmium/version.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ DEALINGS IN THE SOFTWARE.
3434
*/
3535

3636
#define LIBOSMIUM_VERSION_MAJOR 2
37-
#define LIBOSMIUM_VERSION_MINOR 15
38-
#define LIBOSMIUM_VERSION_PATCH 6
37+
#define LIBOSMIUM_VERSION_MINOR 16
38+
#define LIBOSMIUM_VERSION_PATCH 0
3939

40-
#define LIBOSMIUM_VERSION_STRING "2.15.6"
40+
#define LIBOSMIUM_VERSION_STRING "2.16.0"
4141

4242
#endif // OSMIUM_VERSION_HPP

0 commit comments

Comments
 (0)