Skip to content

Commit

Permalink
Release geozero 0.14.0 (#238)
Browse files Browse the repository at this point in the history
Co-authored-by: Dylan DPC <99973273+Dylan-DPC@users.noreply.github.com>
  • Loading branch information
pka and Dylan-DPC authored Sep 26, 2024
1 parent 142c080 commit e3f6502
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 12 deletions.
16 changes: 7 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ default-members = ["geozero", "geozero-cli"]
resolver = "2"

[workspace.package]
# This version should match the version in [workspace.dependencies] below
version = "0.13.0"
version = "0.14.0"
authors = ["Pirmin Kalberer <pka@sourcepole.ch>", "Yuri Astrakhan <YuriAstrakhan@gmail.com>"]
edition = "2021"
homepage = "https://github.com/georust/geozero"
Expand All @@ -17,8 +16,10 @@ license = "MIT OR Apache-2.0"
[workspace.dependencies]
# Used in geozero-cli and geozero-bench
# geozero version must be in sync with flatgeobuf version!
geozero = { version = "0.13.0", default-features = false }
flatgeobuf = "4.3.0"
#geozero = { version = "0.14.0", default-features = false }
geozero = { git = "https://github.com/pka/geozero", branch = "release-0-14", default-features = false }
#flatgeobuf = "4.4.0"
flatgeobuf = { git = "https://github.com/pka/flatgeobuf", branch = "geozero-0-14" }

async-trait = "0.1"
byteorder = { version = "1.4.3", default-features = false }
Expand All @@ -27,7 +28,7 @@ clap = { version = "4.3", features = ["derive"] }
criterion = "0.5.1"
csv = "1.2.2"
dbase = "0.4"
diesel = { version = "2.1.0", default-features = false, features = ["postgres"] }
diesel = { version = "2.2.3", default-features = false, features = ["postgres"] }
dup-indexer = "0.3"
env_logger = "0.10.0"
futures-util = "0.3.28"
Expand Down Expand Up @@ -57,7 +58,4 @@ tokio = { version = "1.30.0", default-features = false }
wkt = "0.11"

[patch.crates-io]
geozero = { path = "./geozero" }
#flatgeobuf = { path = "../../gis/flatgeobuf/src/rust" }
# use pre-release version of flatgeobuf for testing
flatgeobuf = { git = "https://github.com/michaelkirk/flatgeobuf", branch = "mkirk/geozero-0.13.0" }
#geozero = { path = "./geozero" }
24 changes: 21 additions & 3 deletions geozero/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,25 @@
## Unreleased

* Added `WrappedXYProcessor` for pre-processing XY coordinates.
## 0.14.0 - (2024-09-26)

* Update to `geos` 9.0
* <https://github.com/georust/geozero/pull/217>
* Avoid copying string for WKT parsing
* <https://github.com/georust/geozero/pull/220>
* Upgrade sqlx from 0.7 to 0.8
* <https://github.com/georust/geozero/pull/224>
* Update to `wkt` 0.11
* <https://github.com/georust/geozero/pull/221>
* Use floor for coordinate transformation in `mvt_writer`
* <https://github.com/georust/geozero/pull/229>
* Integrate `shp` driver
* <https://github.com/georust/geozero/pull/233>
* Drop `flatgeobuf` build dependency
* <https://github.com/georust/geozero/pull/235>
* Added `WrappedXYProcessor` for pre-processing XY coordinates
* <https://github.com/georust/geozero/pull/222>
* CSV Error Refactor
* <https://github.com/georust/geozero/pull/216>
* Update to `diesel` 2.2.3
* <https://github.com/georust/geozero/pull/239>

## 0.13.0 - (2024-05-17)

Expand Down

0 comments on commit e3f6502

Please sign in to comment.