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/).
12
12
13
13
### Fixed
14
14
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
+
15
29
## [ 2.19.0] - 2023-01-19
16
30
17
31
### Changed
@@ -1271,7 +1285,8 @@ long time. These will not be part of the next version of libosmium:
1271
1285
Doxygen (up to version 1.8.8). This version contains a workaround to fix
1272
1286
this.
1273
1287
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
1275
1290
[ 2.19.0 ] : https://github.com/osmcode/libosmium/compare/v2.18.9...v2.19.0
1276
1291
[ 2.18.0 ] : https://github.com/osmcode/libosmium/compare/v2.17.3...v2.18.0
1277
1292
[ 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
39
39
project (libosmium )
40
40
41
41
set (LIBOSMIUM_VERSION_MAJOR 2 )
42
- set (LIBOSMIUM_VERSION_MINOR 19 )
42
+ set (LIBOSMIUM_VERSION_MINOR 20 )
43
43
set (LIBOSMIUM_VERSION_PATCH 0 )
44
44
45
45
set (LIBOSMIUM_VERSION
Original file line number Diff line number Diff line change @@ -37,11 +37,11 @@ DEALINGS IN THE SOFTWARE.
37
37
#define LIBOSMIUM_VERSION_MAJOR 2
38
38
39
39
// NOLINTNEXTLINE(modernize-macro-to-enum)
40
- #define LIBOSMIUM_VERSION_MINOR 19
40
+ #define LIBOSMIUM_VERSION_MINOR 20
41
41
42
42
// NOLINTNEXTLINE(modernize-macro-to-enum)
43
43
#define LIBOSMIUM_VERSION_PATCH 0
44
44
45
- #define LIBOSMIUM_VERSION_STRING " 2.19 .0"
45
+ #define LIBOSMIUM_VERSION_STRING " 2.20 .0"
46
46
47
47
#endif // OSMIUM_VERSION_HPP
You can’t perform that action at this time.
0 commit comments