Skip to content

Commit

Permalink
Update minimum rstar version to 0.12.2 and update changelogs
Browse files Browse the repository at this point in the history
  • Loading branch information
urschrei committed Nov 7, 2024
1 parent e58db38 commit 9f1e643
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion geo-types/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@

## Unreleased
* Add rstar compatibility for MultiPolygon
* Add multi-threading support to Multi* geometries.
* Add multi-threading support to Multi* geometries.
* Feature-gated ('multithreading'), disabled by default, enabled by default when geo-types is used by geo
* Bumps rstar minimum version from 0.12.0 to 0.12.2

## 0.7.13

Expand Down
2 changes: 1 addition & 1 deletion geo-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ rstar_0_8 = { package = "rstar", version = "0.8", optional = true }
rstar_0_9 = { package = "rstar", version = "0.9", optional = true }
rstar_0_10 = { package = "rstar", version = "0.10", optional = true }
rstar_0_11 = { package = "rstar", version = "0.11", optional = true }
rstar_0_12 = { package = "rstar", version = "0.12", optional = true }
rstar_0_12 = { package = "rstar", version = "0.12.2", optional = true }
serde = { version = "1", optional = true, default-features = false, features = ["alloc", "derive"] }

[dev-dependencies]
Expand Down
2 changes: 2 additions & 0 deletions geo/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
- <https://github.com/georust/geo/pull/1248>
- Add Unary Union algorithm for fast union ops on adjacent / overlapping geometries
- <https://github.com/georust/geo/pull/1246>
- Adds an optional dependency on Rayon (previously depended on by i_overlay)
- Bumps minimum rstar version to 0.12.2

## 0.29.0 - 2024.10.30

Expand Down
2 changes: 1 addition & 1 deletion geo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ log = "0.4.11"
num-traits = "0.2"
proj = { version = "0.27.0", optional = true }
robust = "1.1.0"
rstar = "0.12.0"
rstar = "0.12.2"
serde = { version = "1.0", optional = true, features = ["derive"] }
i_overlay = { version = "1.7.2", default-features = false }

Expand Down

0 comments on commit 9f1e643

Please sign in to comment.