Skip to content

Commit 8460877

Browse files
Bump version to 1.23.0
This release combines many changes, but essentials are: - internal route state api simplification - increased performance - several experimental features - bug fixes * original job place index in activity place to simplify activity-job place matching * `experimental`: a new type of location in pragmatic format to model zero distance/duration from it to any other location. This could be useful to model optional vehicle start location. * allow user to pass alternative objectives in goal context to guide the search * `experimental`: a new `fast-service` objective function to serve jobs as soon as possible * experimental `dispatch` feature * apply code style refactoring * improve selection sampling search * update dependencies * improve a bit documentation * refactor route state * do not use hashmaps to store activity states * double reload assignment when initial solution is used (#126) * unexpected total_order behavior in dynamic heuristic (#128) * improve validation rule for break with time offset (#129) * fix issue with skills (#133) * do not cluster jobs if they are defined in relations (#141)
1 parent 19f8257 commit 8460877

7 files changed

Lines changed: 18 additions & 14 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file.
55

66
## [Unreleased]
77

8+
9+
## [v1.23.0]- 2023-12-22
10+
811
This release combines many changes, but essentials are:
912
- internal route state api simplification
1013
- increased performance
@@ -719,7 +722,8 @@ with Self Organizing MAps and eXtrAs (pronounced as "rosomaha", from russian "р
719722

720723
- Initial commit
721724

722-
[Unreleased]: https://github.com/reinterpretcat/vrp/compare/v1.22.1...HEAD
725+
[Unreleased]: https://github.com/reinterpretcat/vrp/compare/v1.23.0...HEAD
726+
[v1.23.0]: https://github.com/reinterpretcat/vrp/compare/v1.22.1...v1.23.0
723727
[v1.22.1]: https://github.com/reinterpretcat/vrp/compare/v1.22.0...v1.22.1
724728
[v1.22.0]: https://github.com/reinterpretcat/vrp/compare/v1.21.1...v1.22.0
725729
[v1.21.1]: https://github.com/reinterpretcat/vrp/compare/v1.21.0...v1.21.1

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors:
55
given-names: "Ilya"
66
orcid: "https://orcid.org/0000-0002-7613-7412"
77
title: "Rosomaxa, Vehicle Routing Problem Solver"
8-
version: 1.22.1
8+
version: 1.23.0
99
doi: 10.5281/zenodo.4624037
10-
date-released: 2023-08-08
10+
date-released: 2023-12-22
1111
url: "https://github.com/reinterpretcat/vrp"

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ members = [
1313
]
1414

1515
[workspace.package]
16-
version = "1.22.1"
16+
version = "1.23.0"
1717
authors = ["Ilya Builuk <ilya.builuk@gmail.com>"]
1818
license = "Apache-2.0"
1919
keywords = ["vrp", "optimization"]
@@ -25,11 +25,11 @@ edition = "2021"
2525

2626
[workspace.dependencies]
2727
# internal dependencies
28-
rosomaxa = { path = "rosomaxa", version = "0.7.1" }
29-
vrp-core = { path = "vrp-core", version = "1.22.1" }
30-
vrp-scientific = { path = "vrp-scientific", version = "1.22.1" }
31-
vrp-pragmatic = { path = "vrp-pragmatic", version = "1.22.1" }
32-
vrp-cli = { path = "vrp-cli", version = "1.22.1" }
28+
rosomaxa = { path = "rosomaxa", version = "0.7.2" }
29+
vrp-core = { path = "vrp-core", version = "1.23.0" }
30+
vrp-scientific = { path = "vrp-scientific", version = "1.23.0" }
31+
vrp-pragmatic = { path = "vrp-pragmatic", version = "1.23.0" }
32+
vrp-cli = { path = "vrp-cli", version = "1.23.0" }
3333

3434
# external dependencies
3535
hashbrown = "0.14.3"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![downloads](https://img.shields.io/crates/d/vrp-core)](https://crates.io/crates/vrp-core)
55
[![codecov](https://codecov.io/gh/reinterpretcat/vrp/branch/master/graph/badge.svg)](https://codecov.io/gh/reinterpretcat/vrp)
66
[![CodeScene Code Health](https://codescene.io/projects/46594/status-badges/code-health)](https://codescene.io/projects/46594)
7-
[![dependency status](https://deps.rs/crate/vrp-cli/1.22.1/status.svg)](https://deps.rs/crate/vrp-cli/1.22.1)
7+
[![dependency status](https://deps.rs/crate/vrp-cli/1.23.0/status.svg)](https://deps.rs/crate/vrp-cli/1.23.0)
88
[![DOI](https://zenodo.org/badge/238436117.svg)](https://zenodo.org/badge/latestdoi/238436117)
99

1010
![VRP example](docs/resources/vrp-example.png "VRP with Route Balance")
@@ -71,7 +71,7 @@ Another fast way to try vrp solver on your environment is to use `docker` image
7171
* **run public image** from `Github Container Registry`:
7272

7373
```bash
74-
docker run -it -v $(pwd):/repo --name vrp-cli --rm ghcr.io/reinterpretcat/vrp/vrp-cli:1.22.1
74+
docker run -it -v $(pwd):/repo --name vrp-cli --rm ghcr.io/reinterpretcat/vrp/vrp-cli:1.23.0
7575
```
7676

7777
* **build image locally** using `Dockerfile` provided:

docs/src/getting-started/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Another fast way to try vrp solver on your environment is to use `docker` image
2626
* **run public image** from `Github Container Registry`:
2727

2828
```bash
29-
docker run -it -v $(pwd):/repo --name vrp-cli --rm ghcr.io/reinterpretcat/vrp/vrp-cli:1.22.1
29+
docker run -it -v $(pwd):/repo --name vrp-cli --rm ghcr.io/reinterpretcat/vrp/vrp-cli:1.23.0
3030
```
3131

3232
* **build image locally** using `Dockerfile` provided:

rosomaxa/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rosomaxa"
3-
version = "0.7.1"
3+
version = "0.7.2"
44
description = "A rosomaxa algorithm and other building blocks for creating a solver for optimization problems"
55
authors.workspace = true
66
license.workspace = true

vrp-cli/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ mod cli {
2929

3030
pub fn get_app() -> Command {
3131
Command::new("Vehicle Routing Problem Solver")
32-
.version("1.22.1")
32+
.version("1.23.0")
3333
.author("Ilya Builuk <ilya.builuk@gmail.com>")
3434
.about("A command line interface to Vehicle Routing Problem solver")
3535
.subcommand(get_analyze_app())

0 commit comments

Comments
 (0)