Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
robertknight committed Nov 16, 2024
1 parent c6b5b22 commit 04ce851
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 26 deletions.
16 changes: 8 additions & 8 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ serde_json = { version = "1.0.117" }

[package]
name = "rten"
version = "0.14.0"
version = "0.14.1"
edition = "2021"
authors = ["Robert Knight"]
description = "Machine learning runtime"
Expand All @@ -44,9 +44,9 @@ include = ["/src", "/CHANGELOG.md", "/README.md"]
flatbuffers = "24.3.25"
rayon = "1.7.0"
smallvec = { version = "1.10.0", features = ["union", "const_generics", "const_new"] }
rten-tensor = { path = "./rten-tensor", version = "0.14.0" }
rten-vecmath = { path = "./rten-vecmath", version = "0.14.0" }
rten-simd = { path = "./rten-simd", version = "0.14.0" }
rten-tensor = { path = "./rten-tensor", version = "0.14.1" }
rten-vecmath = { path = "./rten-vecmath", version = "0.14.1" }
rten-simd = { path = "./rten-simd", version = "0.14.1" }
fastrand = { version = "2.0.2", optional = true }
fastrand-contrib = { version = "0.1.0", optional = true }
rustc-hash = "2.0.0"
Expand Down
6 changes: 3 additions & 3 deletions rten-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rten-cli"
version = "0.14.0"
version = "0.14.1"
edition = "2021"
authors = ["Robert Knight"]
description = "CLI tool for inspecting and running RTen models"
Expand All @@ -11,8 +11,8 @@ include = ["/src", "/README.md"]

[dependencies]
fastrand = "2.0.2"
rten = { path = "../", version = "0.14.0", features=["mmap", "random"] }
rten-tensor = { path = "../rten-tensor", version = "0.14.0" }
rten = { path = "../", version = "0.14.1", features=["mmap", "random"] }
rten-tensor = { path = "../rten-tensor", version = "0.14.1" }
lexopt = "0.3.0"

[features]
Expand Down
6 changes: 3 additions & 3 deletions rten-generate/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rten-generate"
version = "0.14.0"
version = "0.14.1"
edition = "2021"
authors = ["Robert Knight"]
description = "Utilities to simplify running auto-regressive models with RTen"
Expand All @@ -11,9 +11,9 @@ include = ["/src", "/README.md"]

[dependencies]
fastrand = { version = "2.0.2" }
rten = { path = "../", version = "0.14.0" }
rten = { path = "../", version = "0.14.1" }
rten-text = { path = "../rten-text", version = "0.14.0", optional = true }
rten-tensor = { path = "../rten-tensor", version = "0.14.0" }
rten-tensor = { path = "../rten-tensor", version = "0.14.1" }

[features]
# Enable text decoding using tokenizers from rten-text
Expand Down
4 changes: 2 additions & 2 deletions rten-imageio/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rten-imageio"
version = "0.14.0"
version = "0.14.1"
edition = "2021"
authors = ["Robert Knight"]
description = "Utilities for loading images for use with RTen"
Expand All @@ -11,5 +11,5 @@ include = ["/src", "/README.md"]

[dependencies]
png = "0.17.6"
rten-tensor = { path = "../rten-tensor", version = "0.14.0" }
rten-tensor = { path = "../rten-tensor", version = "0.14.1" }
image = { workspace = true }
4 changes: 2 additions & 2 deletions rten-imageproc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rten-imageproc"
version = "0.14.0"
version = "0.14.1"
edition = "2021"
authors = ["Robert Knight"]
description = "Image tensor processing and geometry functions"
Expand All @@ -10,7 +10,7 @@ repository = "https://github.com/robertknight/rten"
include = ["/src", "/README.md"]

[dependencies]
rten-tensor = { path = "../rten-tensor", version = "0.14.0" }
rten-tensor = { path = "../rten-tensor", version = "0.14.1" }
serde = { workspace = true, features = ["derive"], optional = true }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion rten-simd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rten-simd"
version = "0.14.0"
version = "0.14.1"
edition = "2021"
authors = ["Robert Knight"]
description = "Portable SIMD for stable Rust"
Expand Down
2 changes: 1 addition & 1 deletion rten-tensor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rten-tensor"
version = "0.14.0"
version = "0.14.1"
edition = "2021"
authors = ["Robert Knight"]
description = "Tensor library for the RTen machine learning runtime"
Expand Down
4 changes: 2 additions & 2 deletions rten-vecmath/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rten-vecmath"
version = "0.14.0"
version = "0.14.1"
edition = "2021"
authors = ["Robert Knight"]
description = "SIMD vectorized implementations of various math functions used in ML models"
Expand All @@ -10,7 +10,7 @@ repository = "https://github.com/robertknight/rten"
include = ["/src", "/README.md"]

[dependencies]
rten-simd = { path = "../rten-simd", version = "0.14.0" }
rten-simd = { path = "../rten-simd", version = "0.14.1" }

[dev-dependencies]
fastrand = "2.0.2"
Expand Down

0 comments on commit 04ce851

Please sign in to comment.