Skip to content

Releases: nextmv-io/nextroute

v1.8.0-dev.2

14 Oct 19:47
1214c0c
Compare
Choose a tag to compare
v1.8.0-dev.2 Pre-release
Pre-release

v1.8.0-dev.1

14 Oct 19:33
0931f1a
Compare
Choose a tag to compare
v1.8.0-dev.1 Pre-release
Pre-release

v1.8.0-dev.0

24 Sep 20:41
5ff8639
Compare
Choose a tag to compare
v1.8.0-dev.0 Pre-release
Pre-release

What's Changed

Full Changelog: v1.7.1...v1.8.0-dev.0

v1.7.1

28 Aug 23:40
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.7.0...v1.7.1

v1.7.1-dev.0

28 Aug 23:39
Compare
Choose a tag to compare
v1.7.1-dev.0 Pre-release
Pre-release

What's Changed

Full Changelog: v1.7.0...v1.7.1-dev.0

v1.7.0

28 Aug 15:29
f69bce3
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.6.4...v1.7.0

v1.6.4

06 Aug 17:42
959f78c
Compare
Choose a tag to compare

What's Changed

  • Fixes issue with nil mix items in mixing constraint by @nmisek in #60

Full Changelog: v1.6.3...v1.6.4

v1.6.3

02 Jul 13:07
5221220
Compare
Choose a tag to compare

What's Changed

  • Bump github.com/gorilla/schema from 1.2.0 to 1.4.1 by @dependabot in #59

New Contributors

Full Changelog: v1.6.2...v1.6.3

v1.6.2

23 May 23:41
6da4cc8
Compare
Choose a tag to compare

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

v1.6.1

15 May 21:08
f56ea11
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.6.0...v1.6.1