Skip to content

Commit

Permalink
Release 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tgolsson committed Feb 12, 2024
1 parent 47e9f9c commit ea7410e
Show file tree
Hide file tree
Showing 9 changed files with 30 additions and 28 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

<!-- next-header -->
## [Unreleased] - ReleaseDate
## [0.6.0] - 2024-02-12
- Upgrade to `perchance` v0.5
- Upgrade `tract` to 0.21.0

Expand Down Expand Up @@ -89,7 +90,8 @@ an ECS.
Initial release.

<!-- next-url -->
[Unreleased]: https://github.com/EmbarkStudios/cervo/compare/0.5.1...HEAD
[Unreleased]: https://github.com/EmbarkStudios/cervo/compare/0.6.0...HEAD
[0.6.0]: https://github.com/EmbarkStudios/cervo/compare/0.5.1...0.6.0
[0.5.1]: https://github.com/EmbarkStudios/cervo/compare/0.5.0...0.5.1
[0.5.0]: https://github.com/EmbarkStudios/cervo/compare/0.4.0...0.5.0
[0.4.0]: https://github.com/EmbarkStudios/cervo/compare/0.3.0...0.4.0
Expand Down
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.5.1"
version = "0.6.0"
edition = "2021"
authors = [
"Tom Solberg <[email protected]",
Expand All @@ -14,6 +14,6 @@ readme = "../../README.md"

[dependencies]
anyhow = "1.0.57"
cervo-onnx = { version = "0.5.1", path = "../cervo-onnx" }
cervo-nnef = { version = "0.5.1", path = "../cervo-nnef" }
cervo-core = { version = "0.5.1", path = "../cervo-core" }
cervo-onnx = { version = "0.6.0", path = "../cervo-onnx" }
cervo-nnef = { version = "0.6.0", path = "../cervo-nnef" }
cervo-core = { version = "0.6.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.5.1"
version = "0.6.0"
edition = "2021"
authors = ["Tom Solberg <[email protected]"]
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.5.1", path = "../cervo" }
cervo = { version = "0.6.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.5.1"
version = "0.6.0"
edition = "2021"
authors = [
"Tom Solberg <[email protected]",
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.5.1"
version = "0.6.0"
edition = "2021"
authors = [
"Tom Solberg <[email protected]"
Expand All @@ -19,4 +19,4 @@ tract-nnef = { workspace = true }
tract-hir = { workspace = true }
lazy_static = "1.4"

cervo-core = { version= "0.5.1", path = "../cervo-core" }
cervo-core = { version= "0.6.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.5.1"
version = "0.6.0"
edition = "2021"
authors = [
"Tom Solberg <[email protected]"
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.5.1", path = "../cervo-core" }
cervo-core = { version = "0.6.0", path = "../cervo-core" }
6 changes: 3 additions & 3 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.5.1"
version = "0.6.0"
edition = "2021"
authors = [
"Tom Solberg <[email protected]",
Expand All @@ -14,13 +14,13 @@ categories = [ "science" ]
readme = "../../README.md"

[dependencies]
cervo-core = { version = "0.5.1", path = "../cervo-core"}
cervo-core = { version = "0.6.0", path = "../cervo-core"}
thiserror = "1.0"
anyhow = "1.0.41"
rayon = { version = "1.5", optional = true }

[dev-dependencies]
cervo-asset = { version = "0.5.1", path = "../cervo-asset"}
cervo-asset = { version = "0.6.0", path = "../cervo-asset"}

[features]
threaded = ["rayon"]
Expand Down
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.5.1"
version = "0.6.0"
edition = "2021"
authors = ["Tom Solberg <[email protected]"]
license = "MIT OR Apache-2.0"
Expand All @@ -11,8 +11,8 @@ categories = [ "science" ]
readme = "../../README.md"

[dependencies]
cervo-onnx = { version = "0.5.1", path = "../cervo-onnx" }
cervo-nnef = { version = "0.5.1", path = "../cervo-nnef" }
cervo-asset = { version = "0.5.1", path = "../cervo-asset" }
cervo-core = { version = "0.5.1", path = "../cervo-core" }
cervo-runtime = { version = "0.5.1", path = "../cervo-runtime" }
cervo-onnx = { version = "0.6.0", path = "../cervo-onnx" }
cervo-nnef = { version = "0.6.0", path = "../cervo-nnef" }
cervo-asset = { version = "0.6.0", path = "../cervo-asset" }
cervo-core = { version = "0.6.0", path = "../cervo-core" }
cervo-runtime = { version = "0.6.0", path = "../cervo-runtime" }

0 comments on commit ea7410e

Please sign in to comment.