diff --git a/CHANGELOG.md b/CHANGELOG.md index 12a4422e7..63ffccb27 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,11 @@ are already published. So, I stick to it for now. ## [Unreleased] + +## [1.25.0] 2024-11-10 + +This release focuses on improving heuristic and some performance optimizations. + ### Changed * update rust version @@ -774,7 +779,8 @@ with Self Organizing MAps and eXtrAs (pronounced as "rosomaha", from russian "р - Initial commit -[Unreleased]: https://github.com/reinterpretcat/vrp/compare/v1.24.0...HEAD +[Unreleased]: https://github.com/reinterpretcat/vrp/compare/v1.25.0...HEAD +[v1.25.0]: https://github.com/reinterpretcat/vrp/compare/v1.24.0...v1.25.0 [v1.24.0]: https://github.com/reinterpretcat/vrp/compare/v1.23.0...v1.24.0 [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 diff --git a/CITATION.cff b/CITATION.cff index 9069645be..f4723addc 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.24.0 +version: 1.25.0 doi: 10.5281/zenodo.4624037 date-released: 2024-07-13 url: "https://github.com/reinterpretcat/vrp" diff --git a/Cargo.toml b/Cargo.toml index 7919fc06e..44f959d0c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ members = [ ] [workspace.package] -version = "1.24.0" +version = "1.25.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.8.0" } -vrp-core = { path = "vrp-core", version = "1.24.0" } -vrp-scientific = { path = "vrp-scientific", version = "1.24.0" } -vrp-pragmatic = { path = "vrp-pragmatic", version = "1.24.0" } -vrp-cli = { path = "vrp-cli", version = "1.24.0" } +rosomaxa = { path = "rosomaxa", version = "0.9.0" } +vrp-core = { path = "vrp-core", version = "1.25.0" } +vrp-scientific = { path = "vrp-scientific", version = "1.25.0" } +vrp-pragmatic = { path = "vrp-pragmatic", version = "1.25.0" } +vrp-cli = { path = "vrp-cli", version = "1.25.0" } # external dependencies serde = { version = "1.0.214", features = ["derive"] } diff --git a/README.md b/README.md index 18332e76c..008fc1b37 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.24.0/status.svg)](https://deps.rs/crate/vrp-cli/1.24.0) +[![dependency status](https://deps.rs/crate/vrp-cli/1.25.0/status.svg)](https://deps.rs/crate/vrp-cli/1.25.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") @@ -73,7 +73,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.24.0 + docker run -it -v $(pwd):/repo --name vrp-cli --rm ghcr.io/reinterpretcat/vrp/vrp-cli:1.25.0 ``` * **build image locally** using `Dockerfile` provided: diff --git a/docs/src/getting-started/installation.md b/docs/src/getting-started/installation.md index 5a2e88c16..e30200d65 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.24.0 + docker run -it -v $(pwd):/repo --name vrp-cli --rm ghcr.io/reinterpretcat/vrp/vrp-cli:1.25.0 ``` * **build image locally** using `Dockerfile` provided: diff --git a/rosomaxa/Cargo.toml b/rosomaxa/Cargo.toml index cb65efa08..23fbb46bb 100644 --- a/rosomaxa/Cargo.toml +++ b/rosomaxa/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rosomaxa" -version = "0.8.0" +version = "0.9.0" 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 97295141d..d7a91357c 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.24.0") + .version("1.25.0") .author("Ilya Builuk ") .about("A command line interface to Vehicle Routing Problem solver") .subcommand(get_analyze_app())