From 8460877c3d4a56041fae13dd7538e6e1c0a72ce6 Mon Sep 17 00:00:00 2001 From: reinterpretcat Date: Fri, 22 Dec 2023 19:44:48 +0100 Subject: [PATCH] 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) --- CHANGELOG.md | 6 +++++- CITATION.cff | 4 ++-- Cargo.toml | 12 ++++++------ README.md | 4 ++-- docs/src/getting-started/installation.md | 2 +- rosomaxa/Cargo.toml | 2 +- vrp-cli/src/main.rs | 2 +- 7 files changed, 18 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b388733c9..ba5a2cfb3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file. ## [Unreleased] + +## [v1.23.0]- 2023-12-22 + This release combines many changes, but essentials are: - internal route state api simplification - increased performance @@ -719,7 +722,8 @@ with Self Organizing MAps and eXtrAs (pronounced as "rosomaha", from russian "р - Initial commit -[Unreleased]: https://github.com/reinterpretcat/vrp/compare/v1.22.1...HEAD +[Unreleased]: https://github.com/reinterpretcat/vrp/compare/v1.23.0...HEAD +[v1.23.0]: https://github.com/reinterpretcat/vrp/compare/v1.22.1...v1.23.0 [v1.22.1]: https://github.com/reinterpretcat/vrp/compare/v1.22.0...v1.22.1 [v1.22.0]: https://github.com/reinterpretcat/vrp/compare/v1.21.1...v1.22.0 [v1.21.1]: https://github.com/reinterpretcat/vrp/compare/v1.21.0...v1.21.1 diff --git a/CITATION.cff b/CITATION.cff index c522d5345..0570c5dc1 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -5,7 +5,7 @@ authors: given-names: "Ilya" orcid: "https://orcid.org/0000-0002-7613-7412" title: "Rosomaxa, Vehicle Routing Problem Solver" -version: 1.22.1 +version: 1.23.0 doi: 10.5281/zenodo.4624037 -date-released: 2023-08-08 +date-released: 2023-12-22 url: "https://github.com/reinterpretcat/vrp" diff --git a/Cargo.toml b/Cargo.toml index f6c726e8e..2646035e4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ members = [ ] [workspace.package] -version = "1.22.1" +version = "1.23.0" authors = ["Ilya Builuk "] license = "Apache-2.0" keywords = ["vrp", "optimization"] @@ -25,11 +25,11 @@ edition = "2021" [workspace.dependencies] # internal dependencies -rosomaxa = { path = "rosomaxa", version = "0.7.1" } -vrp-core = { path = "vrp-core", version = "1.22.1" } -vrp-scientific = { path = "vrp-scientific", version = "1.22.1" } -vrp-pragmatic = { path = "vrp-pragmatic", version = "1.22.1" } -vrp-cli = { path = "vrp-cli", version = "1.22.1" } +rosomaxa = { path = "rosomaxa", version = "0.7.2" } +vrp-core = { path = "vrp-core", version = "1.23.0" } +vrp-scientific = { path = "vrp-scientific", version = "1.23.0" } +vrp-pragmatic = { path = "vrp-pragmatic", version = "1.23.0" } +vrp-cli = { path = "vrp-cli", version = "1.23.0" } # external dependencies hashbrown = "0.14.3" diff --git a/README.md b/README.md index ae16a52d5..22deec5e2 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ [![downloads](https://img.shields.io/crates/d/vrp-core)](https://crates.io/crates/vrp-core) [![codecov](https://codecov.io/gh/reinterpretcat/vrp/branch/master/graph/badge.svg)](https://codecov.io/gh/reinterpretcat/vrp) [![CodeScene Code Health](https://codescene.io/projects/46594/status-badges/code-health)](https://codescene.io/projects/46594) -[![dependency status](https://deps.rs/crate/vrp-cli/1.22.1/status.svg)](https://deps.rs/crate/vrp-cli/1.22.1) +[![dependency status](https://deps.rs/crate/vrp-cli/1.23.0/status.svg)](https://deps.rs/crate/vrp-cli/1.23.0) [![DOI](https://zenodo.org/badge/238436117.svg)](https://zenodo.org/badge/latestdoi/238436117) ![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 * **run public image** from `Github Container Registry`: ```bash - docker run -it -v $(pwd):/repo --name vrp-cli --rm ghcr.io/reinterpretcat/vrp/vrp-cli:1.22.1 + docker run -it -v $(pwd):/repo --name vrp-cli --rm ghcr.io/reinterpretcat/vrp/vrp-cli:1.23.0 ``` * **build image locally** using `Dockerfile` provided: diff --git a/docs/src/getting-started/installation.md b/docs/src/getting-started/installation.md index 97de112d7..1c30045bd 100644 --- a/docs/src/getting-started/installation.md +++ b/docs/src/getting-started/installation.md @@ -26,7 +26,7 @@ Another fast way to try vrp solver on your environment is to use `docker` image * **run public image** from `Github Container Registry`: ```bash - docker run -it -v $(pwd):/repo --name vrp-cli --rm ghcr.io/reinterpretcat/vrp/vrp-cli:1.22.1 + docker run -it -v $(pwd):/repo --name vrp-cli --rm ghcr.io/reinterpretcat/vrp/vrp-cli:1.23.0 ``` * **build image locally** using `Dockerfile` provided: diff --git a/rosomaxa/Cargo.toml b/rosomaxa/Cargo.toml index da6ec6c49..d8e1f94f4 100644 --- a/rosomaxa/Cargo.toml +++ b/rosomaxa/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rosomaxa" -version = "0.7.1" +version = "0.7.2" description = "A rosomaxa algorithm and other building blocks for creating a solver for optimization problems" authors.workspace = true license.workspace = true diff --git a/vrp-cli/src/main.rs b/vrp-cli/src/main.rs index 097834115..d1d126a0b 100644 --- a/vrp-cli/src/main.rs +++ b/vrp-cli/src/main.rs @@ -29,7 +29,7 @@ mod cli { pub fn get_app() -> Command { Command::new("Vehicle Routing Problem Solver") - .version("1.22.1") + .version("1.23.0") .author("Ilya Builuk ") .about("A command line interface to Vehicle Routing Problem solver") .subcommand(get_analyze_app())