Skip to content

Commit 298c685

Browse files
committed
Release 0.8.0
1 parent ef0457d commit 298c685

File tree

9 files changed

+30
-28
lines changed

9 files changed

+30
-28
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
<!-- next-header -->
1111
## [Unreleased] - ReleaseDate
12+
## [0.8.0] - 2025-05-28
1213
- Added a new `RecurrentTracker` wrapper to handle recurrent
1314
inputs/outputs if the recurrent data is only needed durign network
1415
evaluation, f.ex. LSTM hidden states.
@@ -105,7 +106,8 @@ an ECS.
105106
Initial release.
106107

107108
<!-- next-url -->
108-
[Unreleased]: https://github.com/EmbarkStudios/cervo/compare/0.7.1...HEAD
109+
[Unreleased]: https://github.com/EmbarkStudios/cervo/compare/0.8.0...HEAD
110+
[0.8.0]: https://github.com/EmbarkStudios/cervo/compare/0.7.1...0.8.0
109111
[0.7.1]: https://github.com/EmbarkStudios/cervo/compare/0.7.0...0.7.1
110112
[0.7.0]: https://github.com/EmbarkStudios/cervo/compare/0.6.1...0.7.0
111113
[0.6.1]: https://github.com/EmbarkStudios/cervo/compare/0.6.0...0.6.1

Cargo.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/cervo-asset/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cervo-asset"
3-
version = "0.7.1"
3+
version = "0.8.0"
44
edition = "2021"
55
authors = [
66
"Tom Solberg <tom.solberg@embark-studios.com",
@@ -14,6 +14,6 @@ readme = "../../README.md"
1414

1515
[dependencies]
1616
anyhow = "1.0.57"
17-
cervo-onnx = { version = "0.7.1", path = "../cervo-onnx" }
18-
cervo-nnef = { version = "0.7.1", path = "../cervo-nnef" }
19-
cervo-core = { version = "0.7.1", path = "../cervo-core" }
17+
cervo-onnx = { version = "0.8.0", path = "../cervo-onnx" }
18+
cervo-nnef = { version = "0.8.0", path = "../cervo-nnef" }
19+
cervo-core = { version = "0.8.0", path = "../cervo-core" }

crates/cervo-cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cervo-cli"
3-
version = "0.7.1"
3+
version = "0.8.0"
44
edition = "2021"
55
authors = ["Tom Solberg <tom.solberg@emark-studios.com"]
66
license = "MIT OR Apache-2.0"
@@ -22,7 +22,7 @@ tracing-subscriber = { version = "0.3", features = ["fmt"] }
2222
serde = { version = "1.0", features = ["derive"] }
2323
serde_json = "1.0"
2424

25-
cervo = { version = "0.7.1", path = "../cervo" }
25+
cervo = { version = "0.8.0", path = "../cervo" }
2626

2727
[[bin]]
2828
name = "cervo"

crates/cervo-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cervo-core"
3-
version = "0.7.1"
3+
version = "0.8.0"
44
edition = "2021"
55
authors = [
66
"Tom Solberg <tom.solberg@embark-studios.com",

crates/cervo-nnef/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cervo-nnef"
3-
version = "0.7.1"
3+
version = "0.8.0"
44
edition = "2021"
55
authors = [
66
"Tom Solberg <tom.solberg@embark-studios.com"
@@ -19,4 +19,4 @@ tract-nnef = { workspace = true }
1919
tract-hir = { workspace = true }
2020
lazy_static = "1.4"
2121

22-
cervo-core = { version= "0.7.1", path = "../cervo-core" }
22+
cervo-core = { version= "0.8.0", path = "../cervo-core" }

crates/cervo-onnx/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cervo-onnx"
3-
version = "0.7.1"
3+
version = "0.8.0"
44
edition = "2021"
55
authors = [
66
"Tom Solberg <tom.solberg@embark-studios.com"
@@ -16,4 +16,4 @@ readme = "../../README.md"
1616
anyhow = "1.0.57"
1717
tract-onnx = { workspace = true }
1818
tract-nnef = { workspace = true }
19-
cervo-core = { version = "0.7.1", path = "../cervo-core" }
19+
cervo-core = { version = "0.8.0", path = "../cervo-core" }

crates/cervo-runtime/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cervo-runtime"
3-
version = "0.7.1"
3+
version = "0.8.0"
44
edition = "2021"
55
authors = [
66
"Tom Solberg <tom.solberg@embark-studios.com",
@@ -14,13 +14,13 @@ categories = [ "science" ]
1414
readme = "../../README.md"
1515

1616
[dependencies]
17-
cervo-core = { version = "0.7.1", path = "../cervo-core"}
17+
cervo-core = { version = "0.8.0", path = "../cervo-core"}
1818
thiserror = "1.0"
1919
anyhow = "1.0.41"
2020
rayon = { version = "1.5", optional = true }
2121

2222
[dev-dependencies]
23-
cervo-asset = { version = "0.7.1", path = "../cervo-asset"}
23+
cervo-asset = { version = "0.8.0", path = "../cervo-asset"}
2424

2525
[features]
2626
threaded = ["rayon"]

crates/cervo/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cervo"
3-
version = "0.7.1"
3+
version = "0.8.0"
44
edition = "2021"
55
authors = ["Tom Solberg <tom.solberg@emark-studios.com"]
66
license = "MIT OR Apache-2.0"
@@ -11,8 +11,8 @@ categories = [ "science" ]
1111
readme = "../../README.md"
1212

1313
[dependencies]
14-
cervo-onnx = { version = "0.7.1", path = "../cervo-onnx" }
15-
cervo-nnef = { version = "0.7.1", path = "../cervo-nnef" }
16-
cervo-asset = { version = "0.7.1", path = "../cervo-asset" }
17-
cervo-core = { version = "0.7.1", path = "../cervo-core" }
18-
cervo-runtime = { version = "0.7.1", path = "../cervo-runtime" }
14+
cervo-onnx = { version = "0.8.0", path = "../cervo-onnx" }
15+
cervo-nnef = { version = "0.8.0", path = "../cervo-nnef" }
16+
cervo-asset = { version = "0.8.0", path = "../cervo-asset" }
17+
cervo-core = { version = "0.8.0", path = "../cervo-core" }
18+
cervo-runtime = { version = "0.8.0", path = "../cervo-runtime" }

0 commit comments

Comments
 (0)