File tree Expand file tree Collapse file tree 3 files changed +19
-4
lines changed
Expand file tree Collapse file tree 3 files changed +19
-4
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,20 @@ This project adheres to [Semantic Versioning](https://semver.org/).
1212
1313### Fixed
1414
15+ ## [ 2.20.0] - 2023-09-20
16+
17+ ### Changed
18+
19+ * Optionally allow fractional seconds in timestamps in OSM files.
20+ * Enable ` posix_fadvise ` usage on FreeBSD.
21+ * Make parsing PBFs a bit less picky.
22+ * Various small code cleanups.
23+
24+ ### Fixed
25+
26+ * Don't use class template arguments on ` GeometryFactory ` constructor
27+ definition.
28+
1529## [ 2.19.0] - 2023-01-19
1630
1731### Changed
@@ -1271,7 +1285,8 @@ long time. These will not be part of the next version of libosmium:
12711285 Doxygen (up to version 1.8.8). This version contains a workaround to fix
12721286 this.
12731287
1274- [ unreleased ] : https://github.com/osmcode/libosmium/compare/v2.19.0...HEAD
1288+ [ unreleased ] : https://github.com/osmcode/libosmium/compare/v2.20.0...HEAD
1289+ [ 2.20.0 ] : https://github.com/osmcode/libosmium/compare/v2.19.0...v2.20.0
12751290[ 2.19.0 ] : https://github.com/osmcode/libosmium/compare/v2.18.9...v2.19.0
12761291[ 2.18.0 ] : https://github.com/osmcode/libosmium/compare/v2.17.3...v2.18.0
12771292[ 2.17.3 ] : https://github.com/osmcode/libosmium/compare/v2.17.2...v2.17.3
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ set(CMAKE_CONFIGURATION_TYPES "Debug;Release;RelWithDebInfo;MinSizeRel;Dev;Cover
3939project (libosmium)
4040
4141set (LIBOSMIUM_VERSION_MAJOR 2)
42- set (LIBOSMIUM_VERSION_MINOR 19 )
42+ set (LIBOSMIUM_VERSION_MINOR 20 )
4343set (LIBOSMIUM_VERSION_PATCH 0)
4444
4545set (LIBOSMIUM_VERSION
Original file line number Diff line number Diff line change @@ -37,11 +37,11 @@ DEALINGS IN THE SOFTWARE.
3737#define LIBOSMIUM_VERSION_MAJOR 2
3838
3939// NOLINTNEXTLINE(modernize-macro-to-enum)
40- #define LIBOSMIUM_VERSION_MINOR 19
40+ #define LIBOSMIUM_VERSION_MINOR 20
4141
4242// NOLINTNEXTLINE(modernize-macro-to-enum)
4343#define LIBOSMIUM_VERSION_PATCH 0
4444
45- #define LIBOSMIUM_VERSION_STRING " 2.19 .0"
45+ #define LIBOSMIUM_VERSION_STRING " 2.20 .0"
4646
4747#endif // OSMIUM_VERSION_HPP
You can’t perform that action at this time.
0 commit comments