Skip to content

Commit

Permalink
Release v2.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joto committed Feb 7, 2022
1 parent 8ab3ec4 commit 9c50fde
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
12 changes: 9 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,16 @@ This project adheres to [Semantic Versioning](https://semver.org/).

### Changed

### Fixed


## [2.18.0] - 2022-02-07

### Changed

* Use `system_error` instead of `runtime_error` where it fits better.
* Remove `OSMIUM_NORETURN` macro. This hasn't been used in a while.

### Fixed

### Removed deprecated parts of the code

Several parts of libosmium have been marked deprecated, many of them for a very
Expand Down Expand Up @@ -1248,7 +1253,8 @@ long time. These will not be part of the next version of libosmium:
Doxygen (up to version 1.8.8). This version contains a workaround to fix
this.

[unreleased]: https://github.com/osmcode/libosmium/compare/v2.17.3...HEAD
[unreleased]: https://github.com/osmcode/libosmium/compare/v2.18.0...HEAD
[2.18.0]: https://github.com/osmcode/libosmium/compare/v2.17.3...v2.18.0
[2.17.3]: https://github.com/osmcode/libosmium/compare/v2.17.2...v2.17.3
[2.17.2]: https://github.com/osmcode/libosmium/compare/v2.17.1...v2.17.2
[2.17.1]: https://github.com/osmcode/libosmium/compare/v2.17.0...v2.17.1
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ set(CMAKE_CONFIGURATION_TYPES "Debug;Release;RelWithDebInfo;MinSizeRel;Dev;Cover
project(libosmium)

set(LIBOSMIUM_VERSION_MAJOR 2)
set(LIBOSMIUM_VERSION_MINOR 17)
set(LIBOSMIUM_VERSION_PATCH 3)
set(LIBOSMIUM_VERSION_MINOR 18)
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 17
#define LIBOSMIUM_VERSION_PATCH 3
#define LIBOSMIUM_VERSION_MINOR 18
#define LIBOSMIUM_VERSION_PATCH 0

#define LIBOSMIUM_VERSION_STRING "2.17.3"
#define LIBOSMIUM_VERSION_STRING "2.18.0"

#endif // OSMIUM_VERSION_HPP

0 comments on commit 9c50fde

Please sign in to comment.