Skip to content

Commit

Permalink
Update change log for v0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmach committed May 10, 2022
1 parent 8111e99 commit 4bd8353
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,24 @@

All notable changes to this project will be documented in this file.

## [v0.7.0](https://github.com/paulmach/orb/compare/v0.6.0...v0.7.0) - 2022-05-10

### Breaking Changes

- tilecover now returns an error (vs. panicing) on non-closed 2d geometry by [@paulmach](https://github.com/paulmach) in https://github.com/paulmach/orb/pull/87

This changes the signature of many of the methods in the [maptile/tilecover](https://github.com/paulmach/orb/tree/master/maptile/tilecover) package.
To emulate the old behavior replace:

tiles := tilecover.Geometry(poly, zoom)

with

tiles, err := tilecover.Geometry(poly, zoom)
if err != nil {
panic(err)
}

## [v0.6.0](https://github.com/paulmach/orb/compare/v0.5.0...v0.6.0) - 2022-05-04

### Added
Expand Down

0 comments on commit 4bd8353

Please sign in to comment.