Skip to content

Commit 1a8a274

Browse files
Merge #815
815: geo 0.20.1 release: update to proper minimum geo-types version r=michaelkirk a=michaelkirk - [x] I agree to follow the project's [code of conduct](https://github.com/georust/geo/blob/main/CODE_OF_CONDUCT.md). - [x] I added an entry to `CHANGES.md` if knowledge of this change could be valuable to users. --- geo won't compile with geo-types before 0.7.4 Note that this is based on the geo-0.20.0 tag, not main, so that we can release a non-breaking 0.20.1 release. Co-authored-by: Michael Kirk <michael.code@endoftheworl.de>
2 parents 1266651 + 4a663e4 commit 1a8a274

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

.github/workflows/test.yml

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
- main
55
- staging
66
- trying
7+
- release/**
78
pull_request:
89
schedule: [cron: "45 6 * * *"]
910

geo/CHANGES.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
# Changes
22

3+
34
## Unreleased
45

56
* Remove unneded reference for `*MapCoords*` closure parameter.
67
* <https://github.com/georust/geo/pull/810>
78
* BREAKING: Bump proj dependency to 0.26 which uses proj lib 9.0
89
* <https://github.com/georust/geo/pull/813>
910

11+
## 0.20.1
12+
13+
* FIX: update to proper minimum geo-types version
14+
* <https://github.com/georust/geo/pull/815>
15+
1016
## 0.20.0
1117

1218
* Add `LinesIter` algorithm to iterate over the lines in geometries.

geo/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "geo"
33
description = "Geospatial primitives and algorithms"
4-
version = "0.20.0"
4+
version = "0.20.1"
55
license = "MIT/Apache-2.0"
66
repository = "https://github.com/georust/geo"
77
documentation = "https://docs.rs/geo/"
@@ -16,7 +16,7 @@ proj-network = ["use-proj", "proj/network"]
1616
use-serde = ["serde", "geo-types/serde"]
1717

1818
[dependencies]
19-
geo-types = { version = "0.7.3", features = ["approx", "use-rstar"] }
19+
geo-types = { version = "0.7.4", features = ["approx", "use-rstar"] }
2020
geographiclib-rs = "0.2"
2121
log = "0.4.11"
2222
num-traits = "0.2"

0 commit comments

Comments
 (0)