File tree Expand file tree Collapse file tree 3 files changed +17
-6
lines changed Expand file tree Collapse file tree 3 files changed +17
-6
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,15 @@ This project adheres to [Semantic Versioning](http://semver.org/).
8
8
9
9
### Added
10
10
11
+ ### Changed
12
+
13
+ ### Fixed
14
+
15
+
16
+ ## [ 2.8.0] - 2016-08-04
17
+
18
+ ### Added
19
+
11
20
- EWKT support.
12
21
- Track ` pop ` type calls and queue underruns when ` OSMIUM_DEBUG_QUEUE_SIZE `
13
22
environment variable is set.
@@ -22,6 +31,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
22
31
- Uses less memory when writing PBF files (smaller string table by default).
23
32
- Removes dependency on sparsehash and boost program options libraries for
24
33
examples.
34
+ - Cleaned up threaded queue code.
25
35
26
36
### Fixed
27
37
@@ -367,7 +377,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
367
377
Doxygen (up to version 1.8.8). This version contains a workaround to fix
368
378
this.
369
379
370
- [ unreleased ] : https://github.com/osmcode/libosmium/compare/v2.7.2...HEAD
380
+ [ unreleased ] : https://github.com/osmcode/libosmium/compare/v2.8.0...HEAD
381
+ [ 2.8.0 ] : https://github.com/osmcode/libosmium/compare/v2.7.2...v2.8.0
371
382
[ 2.7.2 ] : https://github.com/osmcode/libosmium/compare/v2.7.1...v2.7.2
372
383
[ 2.7.1 ] : https://github.com/osmcode/libosmium/compare/v2.7.0...v2.7.1
373
384
[ 2.7.0 ] : https://github.com/osmcode/libosmium/compare/v2.6.1...v2.7.0
Original file line number Diff line number Diff line change @@ -24,8 +24,8 @@ set(CMAKE_CONFIGURATION_TYPES "Debug;Release;RelWithDebInfo;MinSizeRel;Dev;Cover
24
24
project (libosmium)
25
25
26
26
set (LIBOSMIUM_VERSION_MAJOR 2)
27
- set (LIBOSMIUM_VERSION_MINOR 7 )
28
- set (LIBOSMIUM_VERSION_PATCH 2 )
27
+ set (LIBOSMIUM_VERSION_MINOR 8 )
28
+ set (LIBOSMIUM_VERSION_PATCH 0 )
29
29
30
30
set (LIBOSMIUM_VERSION
31
31
"${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 7
38
- #define LIBOSMIUM_VERSION_PATCH 2
37
+ #define LIBOSMIUM_VERSION_MINOR 8
38
+ #define LIBOSMIUM_VERSION_PATCH 0
39
39
40
- #define LIBOSMIUM_VERSION_STRING " 2.7.2 "
40
+ #define LIBOSMIUM_VERSION_STRING " 2.8.0 "
41
41
42
42
#endif // OSMIUM_VERSION_HPP
You can’t perform that action at this time.
0 commit comments