Skip to content

Commit

Permalink
Merge pull request #86 from NREL/release/0.5.0
Browse files Browse the repository at this point in the history
bump version to 0.5.0
  • Loading branch information
nreinicke authored Dec 19, 2023
2 parents b05e55a + 270fbab commit 0bb79f8
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 13 deletions.
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "nrel.routee.compass"
version = "0.4.0"
version = "0.5.0"
description = "An eco-routing tool build upon RouteE-Powertrain"
readme = "README.md"
documentation = "nrel.github.io/routee-compass"
Expand Down Expand Up @@ -35,9 +35,8 @@ manifest-path = "rust/routee-compass-py/Cargo.toml"
include = [
"python/nrel/routee/compass/resources/models/*.bin",
"python/nrel/routee/compass/resources/*.toml",
".cargo/config.toml"
]
exclude = ["rust/routee-compass-powertrain/onnx-runtime/**"]
exclude = ["rust/routee-compass-powertrain/onnxruntime/**"]

[tool.mypy]
ignore_missing_imports = true
Expand Down
2 changes: 1 addition & 1 deletion rust/routee-compass-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "routee-compass-core"
version = "0.4.0"
version = "0.5.0"
edition = "2021"
exclude = ["test/"]
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions rust/routee-compass-powertrain/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "routee-compass-powertrain"
version = "0.4.0"
version = "0.5.0"
edition = "2021"
readme = "README.md"
license = "BSD-3-Clause"
Expand All @@ -11,7 +11,7 @@ documentation = "https://docs.rs/routee-compass"


[dependencies]
routee-compass-core = { path = "../routee-compass-core", version = "0.4.0" }
routee-compass-core = { path = "../routee-compass-core", version = "0.5.0" }
smartcore = { version = "0.3.1", features = ["serde"] } # random forest
thiserror = { workspace = true }
log = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion rust/routee-compass-powertrain/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ To install as a library in Rust, add routee-compass-powertrain to your Cargo.tom

```toml
[dependencies]
routee-compass-powertrain = { version = "0.4.0" }
routee-compass-powertrain = { version = "0.5.0" }
```

Please see the [documentation](https://docs.rs/routee-compass-powertrain/latest/routee_compass_powertrain/) for usage.
Expand Down
6 changes: 3 additions & 3 deletions rust/routee-compass-py/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "routee-compass-py"
version = "0.4.0"
version = "0.5.0"
edition = "2021"
readme = "README.md"
license = "BSD-3-Clause"
Expand All @@ -10,8 +10,8 @@ repository = "https://github.com/NREL/routee-compass"
documentation = "https://docs.rs/routee-compass"

[dependencies]
routee-compass = { path = "../routee-compass", version = "0.4.0" }
routee-compass-core = { path = "../routee-compass-core", version = "0.4.0" }
routee-compass = { path = "../routee-compass", version = "0.5.0" }
routee-compass-core = { path = "../routee-compass-core", version = "0.5.0" }
pyo3 = { version = "0.20.0", features = ["extension-module"] }
serde_json = { workspace = true }
config = { workspace = true }
Expand Down
6 changes: 3 additions & 3 deletions rust/routee-compass/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "routee-compass"
version = "0.4.0"
version = "0.5.0"
edition = "2021"
readme = "README.md"
license = "BSD-3-Clause"
Expand All @@ -18,8 +18,8 @@ keywords = [
categories = ["science", "science::geo"]

[dependencies]
routee-compass-core = { path = "../routee-compass-core", version = "0.4.0" }
routee-compass-powertrain = { path = "../routee-compass-powertrain", version = "0.4.0", features=["onnx"]}
routee-compass-core = { path = "../routee-compass-core", version = "0.5.0" }
routee-compass-powertrain = { path = "../routee-compass-powertrain", version = "0.5.0", features=["onnx"]}
thiserror = { workspace = true }
flate2 = { workspace = true }
serde = { workspace = true, features = ["derive"] }
Expand Down

0 comments on commit 0bb79f8

Please sign in to comment.