Skip to content

Commit

Permalink
changelog entry
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelkirk committed Dec 10, 2024
1 parent 26f9e18 commit 71f4168
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions geo/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,20 @@

- Loosen bounds on `RemoveRepeatedPoints` trait (`num_traits::FromPrimitive` isn't required)
- <https://github.com/georust/geo/pull/1278>
- Added: `Validation` trait to check validity of `Geometry`.
- https://github.com/georust/geo/pull/1279
```
// use in control flow
if polygon.is_valid() { foo() }
// raise an error if invalid
polygon.check_validation()?;
// get all validation errors
let errors = polygon.validation_errors();
// error implements Display for human readable explanations
println!("{}", errors[0]);
```

## 0.29.3 - 2024.12.03

Expand Down

0 comments on commit 71f4168

Please sign in to comment.