Skip to content

Commit

Permalink
Release v2.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joto committed Jan 14, 2017
1 parent d3b72e0 commit c1f34c4
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
9 changes: 9 additions & 0 deletions 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.11.0] - 2017-01-14

### Added

- New index::RelationsMap(Stash|Index) classes implementing an index for
looking up parent relation IDs given a member relation ID.
- Add `get_noexcept()` method to all index maps. For cases where ids are
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 10)
set(LIBOSMIUM_VERSION_PATCH 3)
set(LIBOSMIUM_VERSION_MINOR 11)
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 10
#define LIBOSMIUM_VERSION_PATCH 3
#define LIBOSMIUM_VERSION_MINOR 11
#define LIBOSMIUM_VERSION_PATCH 0

#define LIBOSMIUM_VERSION_STRING "2.10.3"
#define LIBOSMIUM_VERSION_STRING "2.11.0"

#endif // OSMIUM_VERSION_HPP

0 comments on commit c1f34c4

Please sign in to comment.