diff --git a/CHANGES.md b/CHANGES.md index 21b95db6d..65c0b01ab 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,27 @@ # Changes +## geo-types 0.2.0 + +* Introduce `Line::{dx, dy, slope, determinant}` methods. + * +* Remove unnecessary borrows in function params for `Copy` types. + * +* Introduce `x_y` method on `Point` and `Coordinate` + * +* Migrate `Line` aand `LineString` to be a series of `Coordinates` (not `Points`). + * +* Introduce Triangle geometry type. + * +* Rename bounding ‘box’ to ‘rect’; move structure to geo-types. + * + +## geo 0.10.0 + +* Remove unnecessary borrows in function params for `Copy` types. + * +* Rename bounding ‘box’ to ‘rect’; move structure to geo-types. + * + ## geo 0.9.1 * Fix Line-Polygon euclidean distance diff --git a/geo-types/Cargo.toml b/geo-types/Cargo.toml index b23a60646..022c34c6f 100644 --- a/geo-types/Cargo.toml +++ b/geo-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "geo-types" -version = "0.1.1" +version = "0.2.0" authors = ["Corey Farwell "] license = "MIT/Apache-2.0" repository = "https://github.com/georust/geo" diff --git a/geo/Cargo.toml b/geo/Cargo.toml index d5b6fec37..a8fd1ec4d 100644 --- a/geo/Cargo.toml +++ b/geo/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "geo" description = "Geospatial primitives and algorithms" -version = "0.9.1" +version = "0.10.0" authors = ["Corey Farwell "] license = "MIT/Apache-2.0" repository = "https://github.com/georust/geo"