Skip to content

Commit 115ae23

Browse files
committed
Release v2.8.0
1 parent 4174b3c commit 115ae23

File tree

3 files changed

+17
-6
lines changed

3 files changed

+17
-6
lines changed

CHANGELOG.md

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

99
### Added
1010

11+
### Changed
12+
13+
### Fixed
14+
15+
16+
## [2.8.0] - 2016-08-04
17+
18+
### Added
19+
1120
- EWKT support.
1221
- Track `pop` type calls and queue underruns when `OSMIUM_DEBUG_QUEUE_SIZE`
1322
environment variable is set.
@@ -22,6 +31,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
2231
- Uses less memory when writing PBF files (smaller string table by default).
2332
- Removes dependency on sparsehash and boost program options libraries for
2433
examples.
34+
- Cleaned up threaded queue code.
2535

2636
### Fixed
2737

@@ -367,7 +377,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
367377
Doxygen (up to version 1.8.8). This version contains a workaround to fix
368378
this.
369379

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
371382
[2.7.2]: https://github.com/osmcode/libosmium/compare/v2.7.1...v2.7.2
372383
[2.7.1]: https://github.com/osmcode/libosmium/compare/v2.7.0...v2.7.1
373384
[2.7.0]: https://github.com/osmcode/libosmium/compare/v2.6.1...v2.7.0

CMakeLists.txt

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

2626
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)
2929

3030
set(LIBOSMIUM_VERSION
3131
"${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 7
38-
#define LIBOSMIUM_VERSION_PATCH 2
37+
#define LIBOSMIUM_VERSION_MINOR 8
38+
#define LIBOSMIUM_VERSION_PATCH 0
3939

40-
#define LIBOSMIUM_VERSION_STRING "2.7.2"
40+
#define LIBOSMIUM_VERSION_STRING "2.8.0"
4141

4242
#endif // OSMIUM_VERSION_HPP

0 commit comments

Comments
 (0)