File tree Expand file tree Collapse file tree 2 files changed +23
-2
lines changed
Expand file tree Collapse file tree 2 files changed +23
-2
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,26 @@ This project adheres to [Semantic Versioning](https://semver.org/).
1313### Fixed
1414
1515
16+ ## [ 2.3.1] - 2021-09-02
17+
18+ ### Added
19+
20+ - GPKG output support
21+
22+ ### Changed
23+
24+ - More tests, specifically for EPSG:3857.
25+ - More error checks.
26+ - Some shell script cleanups.
27+
28+ ### Fixed
29+
30+ - Fix axis order problem with GDAL 3: In GDAL 3 the axis order for WGS84
31+ changed from (lon, lat) to (lat, lon)! So we need to use the magic "CRS84"
32+ instead which does the same thing in GDAL 2 and GDAL 3. This is an important
33+ fix, without it osmcoastline doesn't work with GDAL 3 when using any output
34+ SRS other than WGS84.
35+
1636## [ 2.3.0] - 2021-01-08
1737
1838### Added
@@ -179,7 +199,8 @@ This project adheres to [Semantic Versioning](https://semver.org/).
179199- Added man pages
180200
181201
182- [ unreleased ] : https://github.com/osmcode/osmium-tool/compare/v2.3.0...HEAD
202+ [ unreleased ] : https://github.com/osmcode/osmium-tool/compare/v2.3.1...HEAD
203+ [ 2.3.1 ] : https://github.com/osmcode/osmium-tool/compare/v2.3.0...v2.3.1
183204[ 2.3.0 ] : https://github.com/osmcode/osmium-tool/compare/v2.2.4...v2.3.0
184205[ 2.2.4 ] : https://github.com/osmcode/osmium-tool/compare/v2.2.3...v2.2.4
185206[ 2.2.3 ] : https://github.com/osmcode/osmium-tool/compare/v2.2.2...v2.2.3
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ project(osmcoastline)
2020
2121set (OSMCOASTLINE_VERSION_MAJOR 2)
2222set (OSMCOASTLINE_VERSION_MINOR 3)
23- set (OSMCOASTLINE_VERSION_PATCH 0 )
23+ set (OSMCOASTLINE_VERSION_PATCH 1 )
2424
2525set (OSMCOASTLINE_VERSION
2626 ${OSMCOASTLINE_VERSION_MAJOR} .${OSMCOASTLINE_VERSION_MINOR} .${OSMCOASTLINE_VERSION_PATCH} )
You can’t perform that action at this time.
0 commit comments