Skip to content

Releases: nextmv-io/nextroute

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

v1.6.0

01 May 10:32
06eb7e8
Compare
Choose a tag to compare

What's Changed

  • Parallel solver cycle invocations respect maximum duration by @davidrijsman in #31
  • Consider invalid locations in distance and duration model expressions by @muellerd in #32
  • Introduced parallel solver events to observe parallel solver by @davidrijsman in #33
  • Initial stops on vehicle are now correct checked for constraint violations by @davidrijsman in #34
  • Allowing direct successors and disallowing successors by @larsbeck in #35

Full Changelog: v1.5.1...1.6.0

v1.5.1

22 Apr 15:49
980b2b5
Compare
Choose a tag to compare

What's Changed

  • Runtime check on at least one operator that checks for improvements. by @davidrijsman in #25
  • Add custom operator test by @nmisek in #24
  • Feature/eng 4940 change default runtime of nextroute to 5 seconds by @nilsbeck in #26
  • Test and fix infeasible custom moves. by @davidrijsman in #28
  • ENG-3978 Adjusting custom statistics for unplanned stops and unplanned plan units by @muellerd in #29
  • ENG-3202 Add a conversion function for schema.Location to measure.Point by @muellerd in #30

New Contributors

Full Changelog: v1.5.0...v1.5.1

v1.5.0

15 Mar 16:41
c5d3ba2
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.5.0-dev.2...v1.5.0

v1.5.0-dev.2

15 Mar 16:10
eb2a0c5
Compare
Choose a tag to compare
v1.5.0-dev.2 Pre-release
Pre-release

What's Changed

New Contributors

Full Changelog: v1.4.0-dev.2...v1.5.0-dev.2

v1.4.0-dev.2

06 Mar 03:10
f7a040c
Compare
Choose a tag to compare
v1.4.0-dev.2 Pre-release
Pre-release

What's Changed

New Contributors

Full Changelog: https://github.com/nextmv-io/nextroute/commits/v1.4.0-dev.2