Skip to content

Commit

Permalink
Add new geotype ctors to CHANGES.md
Browse files Browse the repository at this point in the history
Once georust#782 and georust#784 is merged, we should merge this PR to reflect all the new constructors and instantiation recommendations.
  • Loading branch information
nyurik committed Mar 28, 2022
1 parent 8f4a8a8 commit 21db30e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions geo-types/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
* <https://github.com/georust/geo/pull/767>
* Extend `point!` macro to support single coordinate expression arguments `point!(coordinate)` (coordinate can be created with the `coord!` macro)
* <https://github.com/georust/geo/pull/775>
* `LineString`, `MultiPoint`, `MultiPolygon`, `Triangle`, `MultiLineString` now have a new constructor `new(...)`. `GeometryCollection` has a `new_from(...)` constructor. Do not use tuple constructors like ~~`MultiPoint(...)`~~ for any of the geo-types. Use `MultiPoint::new(...)` and similar instead.
* PRs: [MultiPolygon::new](https://github.com/georust/geo/pull/786), [MultiLineString::new](https://github.com/georust/geo/pull/784), [Triangle::new](https://github.com/georust/geo/pull/783), [GeometryCollection::new_from](https://github.com/georust/geo/pull/782), [LineString::new](https://github.com/georust/geo/pull/781), [MultiPoint::new](https://github.com/georust/geo/pull/778), [Point::from](https://github.com/georust/geo/pull/777)

## 0.7.3

Expand Down

0 comments on commit 21db30e

Please sign in to comment.