Skip to content

Commit a462f81

Browse files
Bump version to 1.25.0
This release focuses on improving heuristic and some performance optimizations. Changed * update rust version * apply some minor code refactorings * apply some performance optimizations * refactor dbscan clustering api * improve heuristic a bit Removed * replace `compare_floats` with built-in `total_cmp` * gene pool in rosomaxa
1 parent bf61a5b commit a462f81

File tree

7 files changed

+19
-13
lines changed

7 files changed

+19
-13
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ are already published. So, I stick to it for now.
88

99
## [Unreleased]
1010

11+
12+
## [1.25.0] 2024-11-10
13+
14+
This release focuses on improving heuristic and some performance optimizations.
15+
1116
### Changed
1217

1318
* update rust version
@@ -774,7 +779,8 @@ with Self Organizing MAps and eXtrAs (pronounced as "rosomaha", from russian "р
774779

775780
- Initial commit
776781

777-
[Unreleased]: https://github.com/reinterpretcat/vrp/compare/v1.24.0...HEAD
782+
[Unreleased]: https://github.com/reinterpretcat/vrp/compare/v1.25.0...HEAD
783+
[v1.25.0]: https://github.com/reinterpretcat/vrp/compare/v1.24.0...v1.25.0
778784
[v1.24.0]: https://github.com/reinterpretcat/vrp/compare/v1.23.0...v1.24.0
779785
[v1.23.0]: https://github.com/reinterpretcat/vrp/compare/v1.22.1...v1.23.0
780786
[v1.22.1]: https://github.com/reinterpretcat/vrp/compare/v1.22.0...v1.22.1

CITATION.cff

Lines changed: 1 addition & 1 deletion
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.24.0
8+
version: 1.25.0
99
doi: 10.5281/zenodo.4624037
1010
date-released: 2024-07-13
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.24.0"
16+
version = "1.25.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.8.0" }
29-
vrp-core = { path = "vrp-core", version = "1.24.0" }
30-
vrp-scientific = { path = "vrp-scientific", version = "1.24.0" }
31-
vrp-pragmatic = { path = "vrp-pragmatic", version = "1.24.0" }
32-
vrp-cli = { path = "vrp-cli", version = "1.24.0" }
28+
rosomaxa = { path = "rosomaxa", version = "0.9.0" }
29+
vrp-core = { path = "vrp-core", version = "1.25.0" }
30+
vrp-scientific = { path = "vrp-scientific", version = "1.25.0" }
31+
vrp-pragmatic = { path = "vrp-pragmatic", version = "1.25.0" }
32+
vrp-cli = { path = "vrp-cli", version = "1.25.0" }
3333

3434
# external dependencies
3535
serde = { version = "1.0.214", features = ["derive"] }

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.24.0/status.svg)](https://deps.rs/crate/vrp-cli/1.24.0)
7+
[![dependency status](https://deps.rs/crate/vrp-cli/1.25.0/status.svg)](https://deps.rs/crate/vrp-cli/1.25.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")
@@ -73,7 +73,7 @@ Another fast way to try vrp solver on your environment is to use `docker` image
7373
* **run public image** from `Github Container Registry`:
7474

7575
```bash
76-
docker run -it -v $(pwd):/repo --name vrp-cli --rm ghcr.io/reinterpretcat/vrp/vrp-cli:1.24.0
76+
docker run -it -v $(pwd):/repo --name vrp-cli --rm ghcr.io/reinterpretcat/vrp/vrp-cli:1.25.0
7777
```
7878

7979
* **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.24.0
29+
docker run -it -v $(pwd):/repo --name vrp-cli --rm ghcr.io/reinterpretcat/vrp/vrp-cli:1.25.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.8.0"
3+
version = "0.9.0"
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.24.0")
32+
.version("1.25.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)