Skip to content

Commit

Permalink
Release {{version}}
Browse files Browse the repository at this point in the history
  • Loading branch information
tgolsson committed Sep 25, 2023
1 parent eb7ea2e commit 7f6509f
Show file tree
Hide file tree
Showing 8 changed files with 28 additions and 28 deletions.
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions crates/cervo-asset/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cervo-asset"
version = "0.4.1-alpha.0"
version = "0.5.0-rc.0"
edition = "2021"
authors = [
"Tom Solberg <tom.solberg@embark-studios.com",
Expand All @@ -14,6 +14,6 @@ readme = "../../README.md"

[dependencies]
anyhow = "1.0.57"
cervo-onnx = { version = "0.4.1-alpha.0", path = "../cervo-onnx" }
cervo-nnef = { version = "0.4.1-alpha.0", path = "../cervo-nnef" }
cervo-core = { version = "0.4.1-alpha.0", path = "../cervo-core" }
cervo-onnx = { version = "0.5.0-rc.0", path = "../cervo-onnx" }
cervo-nnef = { version = "0.5.0-rc.0", path = "../cervo-nnef" }
cervo-core = { version = "0.5.0-rc.0", path = "../cervo-core" }
4 changes: 2 additions & 2 deletions crates/cervo-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cervo-cli"
version = "0.4.1-alpha.0"
version = "0.5.0-rc.0"
edition = "2021"
authors = ["Tom Solberg <tom.solberg@emark-studios.com"]
license = "MIT OR Apache-2.0"
Expand All @@ -20,7 +20,7 @@ log = "0.4"
tempfile = "3.4"
tracing-subscriber = { version = "0.3", features = ["fmt"] }

cervo = { version = "0.4.1-alpha.0", path = "../cervo" }
cervo = { version = "0.5.0-rc.0", path = "../cervo" }

[[bin]]
name = "cervo"
Expand Down
2 changes: 1 addition & 1 deletion crates/cervo-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cervo-core"
version = "0.4.1-alpha.0"
version = "0.5.0-rc.0"
edition = "2021"
authors = [
"Tom Solberg <tom.solberg@embark-studios.com",
Expand Down
4 changes: 2 additions & 2 deletions crates/cervo-nnef/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cervo-nnef"
version = "0.4.1-alpha.0"
version = "0.5.0-rc.0"
edition = "2021"
authors = [
"Tom Solberg <tom.solberg@embark-studios.com"
Expand All @@ -19,4 +19,4 @@ tract-nnef = { workspace = true }
tract-hir = { workspace = true }
lazy_static = "1.4"

cervo-core = { version= "0.4.1-alpha.0", path = "../cervo-core" }
cervo-core = { version= "0.5.0-rc.0", path = "../cervo-core" }
4 changes: 2 additions & 2 deletions crates/cervo-onnx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cervo-onnx"
version = "0.4.1-alpha.0"
version = "0.5.0-rc.0"
edition = "2021"
authors = [
"Tom Solberg <tom.solberg@embark-studios.com"
Expand All @@ -16,4 +16,4 @@ readme = "../../README.md"
anyhow = "1.0.57"
tract-onnx = { workspace = true }
tract-nnef = { workspace = true }
cervo-core = { version = "0.4.1-alpha.0", path = "../cervo-core" }
cervo-core = { version = "0.5.0-rc.0", path = "../cervo-core" }
8 changes: 4 additions & 4 deletions crates/cervo-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cervo-runtime"
version = "0.4.1-alpha.0"
version = "0.5.0-rc.0"
edition = "2021"
authors = [
"Tom Solberg <tom.solberg@embark-studios.com",
Expand All @@ -14,14 +14,14 @@ categories = [ "science" ]
readme = "../../README.md"

[dependencies]
cervo-core = { version = "0.4.1-alpha.0", path = "../cervo-core"}
cervo-core = { version = "0.5.0-rc.0", path = "../cervo-core"}
thiserror = "1.0"
anyhow = "1.0.41"
rayon = { version = "1.5", optional = true }

[dev-dependencies]
cervo-asset = { version = "0.4.1-alpha.0", path = "../cervo-asset"}
cervo-asset = { version = "0.5.0-rc.0", path = "../cervo-asset"}

[features]
threaded = ["rayon"]
default = []
default = []
12 changes: 6 additions & 6 deletions crates/cervo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cervo"
version = "0.4.1-alpha.0"
version = "0.5.0-rc.0"
edition = "2021"
authors = ["Tom Solberg <tom.solberg@emark-studios.com"]
license = "MIT OR Apache-2.0"
Expand All @@ -11,8 +11,8 @@ categories = [ "science" ]
readme = "../../README.md"

[dependencies]
cervo-onnx = { version = "0.4.1-alpha.0", path = "../cervo-onnx" }
cervo-nnef = { version = "0.4.1-alpha.0", path = "../cervo-nnef" }
cervo-asset = { version = "0.4.1-alpha.0", path = "../cervo-asset" }
cervo-core = { version = "0.4.1-alpha.0", path = "../cervo-core" }
cervo-runtime = { version = "0.4.1-alpha.0", path = "../cervo-runtime" }
cervo-onnx = { version = "0.5.0-rc.0", path = "../cervo-onnx" }
cervo-nnef = { version = "0.5.0-rc.0", path = "../cervo-nnef" }
cervo-asset = { version = "0.5.0-rc.0", path = "../cervo-asset" }
cervo-core = { version = "0.5.0-rc.0", path = "../cervo-core" }
cervo-runtime = { version = "0.5.0-rc.0", path = "../cervo-runtime" }

0 comments on commit 7f6509f

Please sign in to comment.