File tree Expand file tree Collapse file tree 3 files changed +19
-4
lines changed Expand file tree Collapse file tree 3 files changed +19
-4
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,20 @@ This project adheres to [Semantic Versioning](http://semver.org/).
13
13
### Fixed
14
14
15
15
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
+
16
30
## [ 2.7.1] - 2016-06-01
17
31
18
32
### Fixes
@@ -327,7 +341,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
327
341
Doxygen (up to version 1.8.8). This version contains a workaround to fix
328
342
this.
329
343
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
331
346
[ 2.7.1 ] : https://github.com/osmcode/libosmium/compare/v2.7.0...v2.7.1
332
347
[ 2.7.0 ] : https://github.com/osmcode/libosmium/compare/v2.6.1...v2.7.0
333
348
[ 2.6.1 ] : https://github.com/osmcode/libosmium/compare/v2.6.0...v2.6.1
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ project(libosmium)
25
25
26
26
set (LIBOSMIUM_VERSION_MAJOR 2)
27
27
set (LIBOSMIUM_VERSION_MINOR 7)
28
- set (LIBOSMIUM_VERSION_PATCH 1 )
28
+ set (LIBOSMIUM_VERSION_PATCH 2 )
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 @@ -35,8 +35,8 @@ DEALINGS IN THE SOFTWARE.
35
35
36
36
#define LIBOSMIUM_VERSION_MAJOR 2
37
37
#define LIBOSMIUM_VERSION_MINOR 7
38
- #define LIBOSMIUM_VERSION_PATCH 1
38
+ #define LIBOSMIUM_VERSION_PATCH 2
39
39
40
- #define LIBOSMIUM_VERSION_STRING " 2.7.1 "
40
+ #define LIBOSMIUM_VERSION_STRING " 2.7.2 "
41
41
42
42
#endif // OSMIUM_VERSION_HPP
You can’t perform that action at this time.
0 commit comments