Skip to content

Commit

Permalink
Merge pull request #102 from NREL/release/0.6.1
Browse files Browse the repository at this point in the history
Version 0.6.1
  • Loading branch information
nreinicke authored Jan 16, 2024
2 parents b8f56ab + b9aa174 commit d7b309f
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions docs/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ name = "2012_Ford_Focus"
type = "single_fuel"
# the file for the routee-powertrain model
model_input_file = "models/2012_Ford_Focus.bin"
# what underlying machine learn framework to use [smartcore | onnx]
# what underlying machine learn framework to use [smartcore | interpolate | onnx]
model_type = "smartcore"
# the units of what the routee-powertrain model expects speed to be in
speed_unit = "miles_per_hour"
Expand Down Expand Up @@ -158,7 +158,7 @@ name = "2012_Ford_Focus"
type = "single_fuel"
# the file for the routee-powertrain model
model_input_file = "models/2012_Ford_Focus.bin"
# what underlying machine learn framework to use [smartcore | onnx]
# what underlying machine learn framework to use [smartcore | interpolate | onnx]
model_type = "smartcore"
# the units of what the routee-powertrain model expects speed to be in
speed_unit = "miles_per_hour"
Expand Down
2 changes: 1 addition & 1 deletion 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.6.0"
version = "0.6.1"
description = "An eco-routing tool build upon RouteE-Powertrain"
readme = "README.md"
documentation = "nrel.github.io/routee-compass"
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.6.0"
version = "0.6.1"
edition = "2021"
exclude = ["test/"]
readme = "README.md"
Expand Down
6 changes: 3 additions & 3 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.6.0"
version = "0.6.1"
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.6.0" }
routee-compass-core = { path = "../routee-compass-core", version = "0.6.1" }
smartcore = { version = "0.3.1", features = ["serde"] } # random forest
thiserror = { workspace = true }
log = { workspace = true }
Expand All @@ -27,5 +27,5 @@ ort = { version = "2.0.0-alpha.4", optional = true }
rayon = { workspace = true }

[features]
default = ["onnx"]
default = []
onnx = ["ort"]
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.6.0" }
routee-compass-powertrain = { version = "0.6.1" }
```

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.6.0"
version = "0.6.1"
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.6.0" }
routee-compass-core = { path = "../routee-compass-core", version = "0.6.0" }
routee-compass = { path = "../routee-compass", version = "0.6.1" }
routee-compass-core = { path = "../routee-compass-core", version = "0.6.1" }
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.6.0"
version = "0.6.1"
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.6.0" }
routee-compass-powertrain = { path = "../routee-compass-powertrain", version = "0.6.0", features=["onnx"]}
routee-compass-core = { path = "../routee-compass-core", version = "0.6.1" }
routee-compass-powertrain = { path = "../routee-compass-powertrain", version = "0.6.1"}
thiserror = { workspace = true }
flate2 = { workspace = true }
serde = { workspace = true, features = ["derive"] }
Expand Down

0 comments on commit d7b309f

Please sign in to comment.