Skip to content

Commit

Permalink
Merge branch 'release/v0.13.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelkirk committed May 16, 2024
2 parents 4a05ea9 + 964f2f8 commit b680d12
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ resolver = "2"

[workspace.package]
# This version should match the version in [workspace.dependencies] below
version = "0.12.0"
version = "0.13.0"
authors = ["Pirmin Kalberer <pka@sourcepole.ch>", "Yuri Astrakhan <YuriAstrakhan@gmail.com>"]
edition = "2021"
homepage = "https://github.com/georust/geozero"
Expand All @@ -18,7 +18,7 @@ license = "MIT OR Apache-2.0"
# This should point to the last published version
# This is a major hack, due to some code (like geozero tests!) relying on flatgeobuf crate,
# which in turn relies on geozero itself.
geozero = { version = "0.12.0", default-features = false }
geozero = { version = "0.13.0", default-features = false }

async-trait = "0.1"
byteorder = { version = "1.4.3", default-features = false }
Expand Down Expand Up @@ -61,4 +61,5 @@ wkt = "0.10.3"
[patch.crates-io]
geozero = { path = "./geozero" }
#flatgeobuf = { path = "../../gis/flatgeobuf/src/rust" }
flatgeobuf = { git = "https://github.com/michaelkirk/flatgeobuf", branch = "mkirk/geozero-0.12.0" }
# use pre-release version of flatgeobuf for testing
flatgeobuf = { git = "https://github.com/michaelkirk/flatgeobuf", branch = "mkirk/geozero-0.13.0" }
16 changes: 16 additions & 0 deletions geozero/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
## 0.13.0 - (2024-05-XX)

* Fixed converting 2D geos::Geometry to ewkt
* <https://github.com/georust/geozero/pull/203>
* Implement `srid` for GeosWriter
* <https://github.com/georust/geozero/pull/201>
* Update docs with requisite `feature` requirements
* <https://github.com/georust/geozero/pull/205>
* Omit GeoJSON properties with null values
* <https://github.com/georust/geozero/pull/206>
* FIX: `with-gdal` feature missing `gdal-sys` requirement (broken in v0.12.0)
* <https://github.com/georust/geozero/pull/212>
* BREAKING: GeoJSONReader decodes `Array` and `Objects` as type `JSON`, not `String`
GeoJSONWriter writes `JSON` props, rather than ignoring them.
* <https://github.com/georust/geozero/pull/208>

## 0.12.0 - (2024-02-13)

* Remove Arrow mod, point to the updated and expanded geozero integration in the `geoarrow` crate (#186)
Expand Down

0 comments on commit b680d12

Please sign in to comment.