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/).
8
8
9
9
### Added
10
10
11
+ ### Changed
12
+
13
+ ### Fixed
14
+
15
+
16
+ ## [ 2.16.0] - 2021-01-08
17
+
18
+ ### Added
19
+
11
20
* The PBF reader and writer now understand PBF blobs compressed with the LZ4
12
21
compression algorithm in addition to the usual ZLIB compression (or no
13
22
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/).
1052
1061
Doxygen (up to version 1.8.8). This version contains a workaround to fix
1053
1062
this.
1054
1063
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
1056
1066
[ 2.15.6 ] : https://github.com/osmcode/libosmium/compare/v2.15.5...v2.15.6
1057
1067
[ 2.15.5 ] : https://github.com/osmcode/libosmium/compare/v2.15.4...v2.15.5
1058
1068
[ 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
39
39
project (libosmium)
40
40
41
41
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 )
44
44
45
45
set (LIBOSMIUM_VERSION
46
46
"${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.
34
34
*/
35
35
36
36
#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
39
39
40
- #define LIBOSMIUM_VERSION_STRING " 2.15.6 "
40
+ #define LIBOSMIUM_VERSION_STRING " 2.16.0 "
41
41
42
42
#endif // OSMIUM_VERSION_HPP
You can’t perform that action at this time.
0 commit comments