Skip to content

Commit

Permalink
Release v2.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joto committed Aug 15, 2017
1 parent f4b2d8e commit 8537ab5
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 6 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,15 @@ This project adheres to [Semantic Versioning](http://semver.org/).

### Added

### Changed

### Fixed


## [2.13.0] - 2017-08-15

### Added

- New `RelationsManager` class superseeds the `relations::Collector` class.
The new class is much more modular and easier to extend. If you are using
the Collector class, you are encouraged to switch.
Expand Down Expand Up @@ -73,6 +82,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- In the example `osmium_location_cache_create`, the index file written is
always truncated first.


## [2.12.2] - 2017-05-03

### Added
Expand Down Expand Up @@ -700,7 +710,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
Doxygen (up to version 1.8.8). This version contains a workaround to fix
this.

[unreleased]: https://github.com/osmcode/libosmium/compare/v2.12.2...HEAD
[unreleased]: https://github.com/osmcode/libosmium/compare/v2.13.0...HEAD
[2.13.0]: https://github.com/osmcode/libosmium/compare/v2.12.2...v2.13.0
[2.12.2]: https://github.com/osmcode/libosmium/compare/v2.12.1...v2.12.2
[2.12.1]: https://github.com/osmcode/libosmium/compare/v2.12.0...v2.12.1
[2.12.0]: https://github.com/osmcode/libosmium/compare/v2.11.0...v2.12.0
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ set(CMAKE_CONFIGURATION_TYPES "Debug;Release;RelWithDebInfo;MinSizeRel;Dev;Cover
project(libosmium)

set(LIBOSMIUM_VERSION_MAJOR 2)
set(LIBOSMIUM_VERSION_MINOR 12)
set(LIBOSMIUM_VERSION_PATCH 2)
set(LIBOSMIUM_VERSION_MINOR 13)
set(LIBOSMIUM_VERSION_PATCH 0)

set(LIBOSMIUM_VERSION
"${LIBOSMIUM_VERSION_MAJOR}.${LIBOSMIUM_VERSION_MINOR}.${LIBOSMIUM_VERSION_PATCH}")
Expand Down
6 changes: 3 additions & 3 deletions include/osmium/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ DEALINGS IN THE SOFTWARE.
*/

#define LIBOSMIUM_VERSION_MAJOR 2
#define LIBOSMIUM_VERSION_MINOR 12
#define LIBOSMIUM_VERSION_PATCH 2
#define LIBOSMIUM_VERSION_MINOR 13
#define LIBOSMIUM_VERSION_PATCH 0

#define LIBOSMIUM_VERSION_STRING "2.12.2"
#define LIBOSMIUM_VERSION_STRING "2.13.0"

#endif // OSMIUM_VERSION_HPP

0 comments on commit 8537ab5

Please sign in to comment.