Skip to content

Commit

Permalink
Release v2.15.2
Browse files Browse the repository at this point in the history
  • Loading branch information
joto committed Aug 16, 2019
1 parent 1c5762f commit c47366d
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
15 changes: 14 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](https://semver.org/).

### Added

### Changed

### Fixed


## [2.15.2] - 2019-08-16

### Added

* Instead of handler classes, the `apply` function can now also take
lambdas (or objects from classes implementing `operator()`).
* Add swap, copy constructor and assignment operator to IdSetDense.
Expand All @@ -25,6 +34,9 @@ This project adheres to [Semantic Versioning](https://semver.org/).
used to throw an error like "Unknown element in <way>: bbox". With this
commit, these subelements are ignored, ie. there is no error any more,
but the data is not read.
* Add swap, copy constructor and assignment operator to IdSetDense.
* Update included catch.hpp to 1.12.2.
* Retire use of `OSMIUM_NORETURN` macro. Use `[[noreturn]]` instead.

### Fixed

Expand Down Expand Up @@ -944,7 +956,8 @@ This project adheres to [Semantic Versioning](https://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.15.1...HEAD
[unreleased]: https://github.com/osmcode/libosmium/compare/v2.15.2...HEAD
[2.15.2]: https://github.com/osmcode/libosmium/compare/v2.15.1...v2.15.2
[2.15.1]: https://github.com/osmcode/libosmium/compare/v2.15.0...v2.15.1
[2.15.0]: https://github.com/osmcode/libosmium/compare/v2.14.2...v2.15.0
[2.14.2]: https://github.com/osmcode/libosmium/compare/v2.14.1...v2.14.2
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ project(libosmium)

set(LIBOSMIUM_VERSION_MAJOR 2)
set(LIBOSMIUM_VERSION_MINOR 15)
set(LIBOSMIUM_VERSION_PATCH 1)
set(LIBOSMIUM_VERSION_PATCH 2)

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

#define LIBOSMIUM_VERSION_MAJOR 2
#define LIBOSMIUM_VERSION_MINOR 15
#define LIBOSMIUM_VERSION_PATCH 1
#define LIBOSMIUM_VERSION_PATCH 2

#define LIBOSMIUM_VERSION_STRING "2.15.1"
#define LIBOSMIUM_VERSION_STRING "2.15.2"

#endif // OSMIUM_VERSION_HPP

0 comments on commit c47366d

Please sign in to comment.