Skip to content

Commit

Permalink
bump version for release
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelkirk committed Apr 16, 2021
1 parent c23e1b4 commit 5854711
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions geo-types/CHANGES.md
@@ -1,20 +1,20 @@
# Changes

## Unreleased
## 0.7.2

* Implement `RelativeEq` and `AbsDiffEq` for fuzzy comparison of remaining Geometry Types
* <https://github.com/georust/geo/pull/628>
* Implement `From<Line>` for `LineString`
* <https://github.com/georust/geo/pull/634>
* Add optional `arbitrary` feature for integration with the [arbitrary](https://github.com/rust-fuzz/arbitrary) crate
* <https://github.com/georust/geo/pull/622>

## 0.7.1

* Implement `Default` on `Coordinate` and `Point` structs (defaults to `(x: 0, y: 0)`)
* <https://github.com/georust/geo/pull/616>
* Add specific details about conversion failures in the newly public `geo_types::Error`
* <https://github.com/georust/geo/pull/614>
* Add optional `arbitrary` feature for integration with the [arbitrary](https://github.com/rust-fuzz/arbitrary) crate
* <https://github.com/georust/geo/pull/622>

## 0.7.0

Expand Down
2 changes: 1 addition & 1 deletion geo-types/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "geo-types"
version = "0.7.1"
version = "0.7.2"
authors = ["Corey Farwell <coreyf@rwell.org>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/georust/geo"
Expand Down
4 changes: 2 additions & 2 deletions geo/CHANGES.md
@@ -1,14 +1,14 @@
# Changes

## Unreleased
## 0.18.0

* Add `line_intersection` to compute point or segment intersection of two Lines.
* <https://github.com/georust/geo/pull/636>
* Add `Relate` trait to topologically relate two geometries based on [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM) semantics.
* <https://github.com/georust/geo/pull/639>
* Fix `Contains` implementation for Polygons to match the OGC spec using the new `Relate` trait
* <https://github.com/georust/geo/pull/639>
* BREAKING: `Contains` no longer supports integer `Polygon` and `Geometry`
* BREAKING: `Contains` no longer supports Integer `Polygon` and `Geometry`. This was a trade-off for a `Contains` implementation that was more correct for Floats.
* <https://github.com/georust/geo/pull/639>

## 0.17.1
Expand Down
2 changes: 1 addition & 1 deletion geo/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "geo"
description = "Geospatial primitives and algorithms"
version = "0.17.1"
version = "0.18.0"
authors = ["Corey Farwell <coreyf@rwell.org>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/georust/geo"
Expand Down

0 comments on commit 5854711

Please sign in to comment.