Skip to content

Commit

Permalink
Release v2.20.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joto committed Sep 20, 2023
1 parent e3de973 commit cd892f9
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 4 deletions.
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,20 @@ This project adheres to [Semantic Versioning](https://semver.org/).

### Fixed

## [2.20.0] - 2023-09-20

### Changed

* Optionally allow fractional seconds in timestamps in OSM files.
* Enable `posix_fadvise` usage on FreeBSD.
* Make parsing PBFs a bit less picky.
* Various small code cleanups.

### Fixed

* Don't use class template arguments on `GeometryFactory` constructor
definition.

## [2.19.0] - 2023-01-19

### Changed
Expand Down Expand Up @@ -1271,7 +1285,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.19.0...HEAD
[unreleased]: https://github.com/osmcode/libosmium/compare/v2.20.0...HEAD
[2.20.0]: https://github.com/osmcode/libosmium/compare/v2.19.0...v2.20.0
[2.19.0]: https://github.com/osmcode/libosmium/compare/v2.18.9...v2.19.0
[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
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ set(CMAKE_CONFIGURATION_TYPES "Debug;Release;RelWithDebInfo;MinSizeRel;Dev;Cover
project(libosmium)

set(LIBOSMIUM_VERSION_MAJOR 2)
set(LIBOSMIUM_VERSION_MINOR 19)
set(LIBOSMIUM_VERSION_MINOR 20)
set(LIBOSMIUM_VERSION_PATCH 0)

set(LIBOSMIUM_VERSION
Expand Down
4 changes: 2 additions & 2 deletions include/osmium/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ DEALINGS IN THE SOFTWARE.
#define LIBOSMIUM_VERSION_MAJOR 2

// NOLINTNEXTLINE(modernize-macro-to-enum)
#define LIBOSMIUM_VERSION_MINOR 19
#define LIBOSMIUM_VERSION_MINOR 20

// NOLINTNEXTLINE(modernize-macro-to-enum)
#define LIBOSMIUM_VERSION_PATCH 0

#define LIBOSMIUM_VERSION_STRING "2.19.0"
#define LIBOSMIUM_VERSION_STRING "2.20.0"

#endif // OSMIUM_VERSION_HPP

0 comments on commit cd892f9

Please sign in to comment.