Skip to content

Commit 8623f1e

Browse files
committed
Release v2.7.2
1 parent e135dd8 commit 8623f1e

File tree

3 files changed

+19
-4
lines changed

3 files changed

+19
-4
lines changed

CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,20 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1313
### Fixed
1414

1515

16+
## [2.7.2] - 2016-06-08
17+
18+
### Changed
19+
20+
- Much faster output of OSM files in XML, OPL, or debug formats.
21+
22+
### Fixed
23+
24+
- Parsing and output of coordinates now faster and always uses decimal dot
25+
independant of locale setting.
26+
- Do not output empty discussion elements in changeset XML output.
27+
- Data corruption regression in mmap based indexes.
28+
29+
1630
## [2.7.1] - 2016-06-01
1731

1832
### Fixes
@@ -327,7 +341,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
327341
Doxygen (up to version 1.8.8). This version contains a workaround to fix
328342
this.
329343

330-
[unreleased]: https://github.com/osmcode/libosmium/compare/v2.7.1...HEAD
344+
[unreleased]: https://github.com/osmcode/libosmium/compare/v2.7.2...HEAD
345+
[2.7.2]: https://github.com/osmcode/libosmium/compare/v2.7.1...v2.7.2
331346
[2.7.1]: https://github.com/osmcode/libosmium/compare/v2.7.0...v2.7.1
332347
[2.7.0]: https://github.com/osmcode/libosmium/compare/v2.6.1...v2.7.0
333348
[2.6.1]: https://github.com/osmcode/libosmium/compare/v2.6.0...v2.6.1

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ project(libosmium)
2525

2626
set(LIBOSMIUM_VERSION_MAJOR 2)
2727
set(LIBOSMIUM_VERSION_MINOR 7)
28-
set(LIBOSMIUM_VERSION_PATCH 1)
28+
set(LIBOSMIUM_VERSION_PATCH 2)
2929

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

include/osmium/version.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ DEALINGS IN THE SOFTWARE.
3535

3636
#define LIBOSMIUM_VERSION_MAJOR 2
3737
#define LIBOSMIUM_VERSION_MINOR 7
38-
#define LIBOSMIUM_VERSION_PATCH 1
38+
#define LIBOSMIUM_VERSION_PATCH 2
3939

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

4242
#endif // OSMIUM_VERSION_HPP

0 commit comments

Comments
 (0)