Skip to content

Commit

Permalink
Bump version to 1.5.8
Browse files Browse the repository at this point in the history
* add area priority
* add support to generate problems in hre format
  • Loading branch information
reinterpretcat committed Oct 3, 2020
1 parent 7a15325 commit dd7b348
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ The fastest way to get 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.5.7
docker run -it -v $(pwd):/repo --name vrp-cli --rm ghcr.io/reinterpretcat/vrp/vrp-cli:1.5.8
```

* **build image locally** using `Dockerfile` provided:
Expand Down
2 changes: 1 addition & 1 deletion docs/src/getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
The fastest way to get vrp solver on your environment is to use public `docker` image from `Github Container Registry`:

```bash
docker run -it -v $(pwd):/repo --name vrp-cli --rm ghcr.io/reinterpretcat/vrp/vrp-cli:1.5.7
docker run -it -v $(pwd):/repo --name vrp-cli --rm ghcr.io/reinterpretcat/vrp/vrp-cli:1.5.8
```

## Install from source
Expand Down
4 changes: 2 additions & 2 deletions examples/json-pragmatic/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "json-pragmatic"
version = "1.5.7"
version = "1.5.8"
authors = ["Ilya Builuk <[email protected]>"]
license = "Apache-2.0"
keywords = ["vrp", "optimization"]
Expand All @@ -13,7 +13,7 @@ description = "An examples for solving rich VRP"
publish = false

[dependencies]
vrp-pragmatic = { path = "../../vrp-pragmatic", version = "1.5.7" }
vrp-pragmatic = { path = "../../vrp-pragmatic", version = "1.5.8" }

[dev-dependencies]
criterion = "0.3.3"
Expand Down
8 changes: 4 additions & 4 deletions vrp-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vrp-cli"
version = "1.5.7"
version = "1.5.8"
authors = ["Ilya Builuk <[email protected]>"]
license = "Apache-2.0"
keywords = ["vrp", "optimization"]
Expand All @@ -16,9 +16,9 @@ name = "vrp_cli"
crate-type = ["cdylib", "lib"]

[dependencies]
vrp-core = { path = "../vrp-core", version = "1.5.7" }
vrp-scientific = { path = "../vrp-scientific", version = "1.5.7" }
vrp-pragmatic = { path = "../vrp-pragmatic", version = "1.5.7" }
vrp-core = { path = "../vrp-core", version = "1.5.8" }
vrp-scientific = { path = "../vrp-scientific", version = "1.5.8" }
vrp-pragmatic = { path = "../vrp-pragmatic", version = "1.5.8" }

csv = "1.1.3"
serde_json = "1.0.57"
Expand Down
2 changes: 1 addition & 1 deletion vrp-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vrp-core"
version = "1.5.7"
version = "1.5.8"
authors = ["Ilya Builuk <[email protected]>"]
license = "Apache-2.0"
keywords = ["vrp", "optimization"]
Expand Down
4 changes: 2 additions & 2 deletions vrp-pragmatic/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vrp-pragmatic"
version = "1.5.7"
version = "1.5.8"
authors = ["Ilya Builuk <[email protected]>"]
license = "Apache-2.0"
keywords = ["vrp", "optimization"]
Expand All @@ -12,7 +12,7 @@ edition = "2018"
description = "An extension logic for solving rich VRP"

[dependencies]
vrp-core = { path = "../vrp-core", version = "1.5.7" }
vrp-core = { path = "../vrp-core", version = "1.5.8" }

serde = { version = "1.0.115", features = ["derive"] }
serde_json = "1.0.57"
Expand Down
4 changes: 2 additions & 2 deletions vrp-scientific/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vrp-scientific"
version = "1.5.7"
version = "1.5.8"
authors = ["Ilya Builuk <[email protected]>"]
license = "Apache-2.0"
keywords = ["vrp", "optimization"]
Expand All @@ -13,4 +13,4 @@ description = "An extension logic for solving scientific VRP"


[dependencies]
vrp-core = { path = "../vrp-core", version = "1.5.7" }
vrp-core = { path = "../vrp-core", version = "1.5.8" }

0 comments on commit dd7b348

Please sign in to comment.