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.13.0] - 2017-08-15
17
+
18
+ ### Added
19
+
11
20
- New ` RelationsManager ` class superseeds the ` relations::Collector ` class.
12
21
The new class is much more modular and easier to extend. If you are using
13
22
the Collector class, you are encouraged to switch.
@@ -73,6 +82,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
73
82
- In the example ` osmium_location_cache_create ` , the index file written is
74
83
always truncated first.
75
84
85
+
76
86
## [ 2.12.2] - 2017-05-03
77
87
78
88
### Added
@@ -700,7 +710,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
700
710
Doxygen (up to version 1.8.8). This version contains a workaround to fix
701
711
this.
702
712
703
- [ unreleased ] : https://github.com/osmcode/libosmium/compare/v2.12.2...HEAD
713
+ [ unreleased ] : https://github.com/osmcode/libosmium/compare/v2.13.0...HEAD
714
+ [ 2.13.0 ] : https://github.com/osmcode/libosmium/compare/v2.12.2...v2.13.0
704
715
[ 2.12.2 ] : https://github.com/osmcode/libosmium/compare/v2.12.1...v2.12.2
705
716
[ 2.12.1 ] : https://github.com/osmcode/libosmium/compare/v2.12.0...v2.12.1
706
717
[ 2.12.0 ] : https://github.com/osmcode/libosmium/compare/v2.11.0...v2.12.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 12 )
28
- set (LIBOSMIUM_VERSION_PATCH 2 )
27
+ set (LIBOSMIUM_VERSION_MINOR 13 )
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 12
38
- #define LIBOSMIUM_VERSION_PATCH 2
37
+ #define LIBOSMIUM_VERSION_MINOR 13
38
+ #define LIBOSMIUM_VERSION_PATCH 0
39
39
40
- #define LIBOSMIUM_VERSION_STRING " 2.12.2 "
40
+ #define LIBOSMIUM_VERSION_STRING " 2.13.0 "
41
41
42
42
#endif // OSMIUM_VERSION_HPP
You can’t perform that action at this time.
0 commit comments