Skip to content

Commit

Permalink
Prepare for geo-types 0.2.0 release, geo 0.10.0 release.
Browse files Browse the repository at this point in the history
Fixes georust#303.

πŸ₯‚πŸŽŠπŸ»πŸŽ‰
  • Loading branch information
frewsxcv committed Aug 16, 2018
1 parent 9e97d4e commit 7be21a5
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
22 changes: 22 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# Changes

## geo-types 0.2.0

* Introduce `Line::{dx, dy, slope, determinant}` methods.
* <https://github.com/georust/geo/pull/246>
* Remove unnecessary borrows in function params for `Copy` types.
* <https://github.com/georust/geo/pull/265>
* Introduce `x_y` method on `Point` and `Coordinate`
* <https://github.com/georust/geo/pull/277>
* Migrate `Line` aand `LineString` to be a series of `Coordinates` (not `Points`).
* <https://github.com/georust/geo/pull/244>
* Introduce Triangle geometry type.
* <https://github.com/georust/geo/pull/285>
* Rename bounding β€˜box’ to β€˜rect’; move structure to geo-types.
* <https://github.com/georust/geo/pull/295>

## geo 0.10.0

* Remove unnecessary borrows in function params for `Copy` types.
* <https://github.com/georust/geo/pull/265>
* Rename bounding β€˜box’ to β€˜rect’; move structure to geo-types.
* <https://github.com/georust/geo/pull/295>

## geo 0.9.1

* Fix Line-Polygon euclidean distance
Expand Down
2 changes: 1 addition & 1 deletion geo-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "geo-types"
version = "0.1.1"
version = "0.2.0"
authors = ["Corey Farwell <coreyf@rwell.org>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/georust/geo"
Expand Down
2 changes: 1 addition & 1 deletion geo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "geo"
description = "Geospatial primitives and algorithms"
version = "0.9.1"
version = "0.10.0"
authors = ["Corey Farwell <coreyf@rwell.org>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/georust/geo"
Expand Down

0 comments on commit 7be21a5

Please sign in to comment.