Skip to content

Commit 8bfe2ba

Browse files
committed
Release v2.7.0
1 parent c3604f3 commit 8bfe2ba

File tree

2 files changed

+15
-5
lines changed

2 files changed

+15
-5
lines changed

CHANGELOG.md

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,20 @@ This project adheres to [Semantic Versioning](http://semver.org/).
88

99
### Added
1010

11+
### Changed
12+
13+
### Fixed
14+
15+
16+
## [2.7.0] - 2016-06-01
17+
18+
### Added
19+
1120
- New functions for iterating over specific item types in buffers
1221
(`osmium::memory::Buffer::select()`), over specific subitems
1322
(`osmium::OSMObject::subitems()`), and for iterating over all rings of
1423
an area (`osmium::Areas::outer_rings(`), `inner_rings()`).
15-
- Debug output optionally prints CRC32 when "add_crc32" file option is set.
24+
- Debug output optionally prints CRC32 when `add_crc32` file option is set.
1625

1726
### Changed
1827

@@ -31,7 +40,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
3140
### Fixed
3241

3342
- Output operator for Location shows full precision.
34-
- Undefined behaviour in WKB writer and types_from_string() function.
43+
- Undefined behaviour in WKB writer and `types_from_string()` function.
3544
- Fix unsigned overflow in pool.hpp.
3645
- OSM objects are now ordered by type (nodes, then ways, then relations),
3746
then ID, then version, then timestamp. Ordering by timestamp is normally
@@ -311,7 +320,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
311320
Doxygen (up to version 1.8.8). This version contains a workaround to fix
312321
this.
313322

314-
[unreleased]: https://github.com/osmcode/libosmium/compare/v2.6.1...HEAD
323+
[unreleased]: https://github.com/osmcode/libosmium/compare/v2.7.0...HEAD
324+
[2.7.0]: https://github.com/osmcode/libosmium/compare/v2.6.1...v2.7.0
315325
[2.6.1]: https://github.com/osmcode/libosmium/compare/v2.6.0...v2.6.1
316326
[2.6.0]: https://github.com/osmcode/libosmium/compare/v2.5.4...v2.6.0
317327
[2.5.4]: https://github.com/osmcode/libosmium/compare/v2.5.3...v2.5.4

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 6)
28-
set(LIBOSMIUM_VERSION_PATCH 1)
27+
set(LIBOSMIUM_VERSION_MINOR 7)
28+
set(LIBOSMIUM_VERSION_PATCH 0)
2929

3030
set(LIBOSMIUM_VERSION
3131
"${LIBOSMIUM_VERSION_MAJOR}.${LIBOSMIUM_VERSION_MINOR}.${LIBOSMIUM_VERSION_PATCH}")

0 commit comments

Comments
 (0)