diff --git a/README.md b/README.md index 5aad47adb..6390ccc50 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/docs/src/getting-started/installation.md b/docs/src/getting-started/installation.md index 1b730edc1..9ec1e3a65 100644 --- a/docs/src/getting-started/installation.md +++ b/docs/src/getting-started/installation.md @@ -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 diff --git a/examples/json-pragmatic/Cargo.toml b/examples/json-pragmatic/Cargo.toml index dc7c5fac0..7260103d9 100644 --- a/examples/json-pragmatic/Cargo.toml +++ b/examples/json-pragmatic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "json-pragmatic" -version = "1.5.7" +version = "1.5.8" authors = ["Ilya Builuk "] license = "Apache-2.0" keywords = ["vrp", "optimization"] @@ -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" diff --git a/vrp-cli/Cargo.toml b/vrp-cli/Cargo.toml index d5aa37f13..685ed76d2 100644 --- a/vrp-cli/Cargo.toml +++ b/vrp-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vrp-cli" -version = "1.5.7" +version = "1.5.8" authors = ["Ilya Builuk "] license = "Apache-2.0" keywords = ["vrp", "optimization"] @@ -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" diff --git a/vrp-core/Cargo.toml b/vrp-core/Cargo.toml index f3ff05bad..b947bea41 100644 --- a/vrp-core/Cargo.toml +++ b/vrp-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vrp-core" -version = "1.5.7" +version = "1.5.8" authors = ["Ilya Builuk "] license = "Apache-2.0" keywords = ["vrp", "optimization"] diff --git a/vrp-pragmatic/Cargo.toml b/vrp-pragmatic/Cargo.toml index 6824b9fa4..6533d9b75 100644 --- a/vrp-pragmatic/Cargo.toml +++ b/vrp-pragmatic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vrp-pragmatic" -version = "1.5.7" +version = "1.5.8" authors = ["Ilya Builuk "] license = "Apache-2.0" keywords = ["vrp", "optimization"] @@ -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" diff --git a/vrp-scientific/Cargo.toml b/vrp-scientific/Cargo.toml index c72cfc553..67ed365c5 100644 --- a/vrp-scientific/Cargo.toml +++ b/vrp-scientific/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vrp-scientific" -version = "1.5.7" +version = "1.5.8" authors = ["Ilya Builuk "] license = "Apache-2.0" keywords = ["vrp", "optimization"] @@ -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" }