File tree Expand file tree Collapse file tree 3 files changed +16
-6
lines changed Expand file tree Collapse file tree 3 files changed +16
-6
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -39,8 +39,8 @@ set(CMAKE_CONFIGURATION_TYPES "Debug;Release;RelWithDebInfo;MinSizeRel;Dev;Cover
3939project (libosmium)
4040
4141set (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
4545set (LIBOSMIUM_VERSION
4646 "${LIBOSMIUM_VERSION_MAJOR} .${LIBOSMIUM_VERSION_MINOR} .${LIBOSMIUM_VERSION_PATCH} " )
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments