Skip to content

v1.6.2

Compare
Choose a tag to compare
@github-actions github-actions released this 23 May 23:41
· 19 commits to develop since this release
6da4cc8

BREAKING

This release is breaking if nil checks were done on the nextroute.SolutionStop interface (as it is now becoming a struct for performance reasons). It is recommended to use .IsZero() check instead from now on.

I.e., the following code:

var stop nextroute.SolutionStop = nil
// ...
if stop == nil {
  // ...
}

becomes:

var stop nextroute.SolutionStop
// ...
if stop.IsZero() {
  // ...
}

What's Changed

Full Changelog: v1.6.1...v1.6.2