Skip to content

Commit

Permalink
post-release 0.21.9-pre
Browse files Browse the repository at this point in the history
  • Loading branch information
kali committed Dec 5, 2024
1 parent 739c01b commit 3df1f74
Show file tree
Hide file tree
Showing 23 changed files with 44 additions and 41 deletions.
40 changes: 21 additions & 19 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -194,25 +194,27 @@ time-macros = "0.2.10"
tokenizers = "0.19"
unicode-normalization = "0.1.19"
walkdir = "2.3.2"
tract-api = { version = '0.21.8-pre', path = 'api' }
tract-core = { version = '0.21.8-pre', path = 'core' }
tract-data = { version = '0.21.8', path = 'data' }
tract-extra = { version = '0.21.8-pre', path = 'extra' }
tract-hir = { version = '0.21.8-pre', path = 'hir' }
tract-libcli = { version = '0.21.8-pre', path = 'libcli' }
tract-linalg = { version = '0.21.8-pre', path = 'linalg' }
tract-metal = { version = '0.21.8-pre', path = 'metal' }
tract-nnef-resources = { version = '0.21.8-pre', path = 'nnef/nnef-resources' }
tract-nnef = { version = '0.21.8-pre', path = 'nnef' }
tract-onnx-opl = { version = '0.21.8-pre', path = 'onnx-opl' }
tract-onnx = { version = '0.21.8-pre', path = 'onnx' }
tract-pulse-opl = { version = '0.21.8-pre', path = 'pulse-opl' }
tract-pulse = { version = '0.21.8-pre', path = 'pulse' }
tract-tensorflow = { version = '0.21.8-pre', path = 'tensorflow' }
tract-tflite = { version = '0.21.8-pre', path = 'tflite' }
tract-rs = { version = '0.21.8-pre', path = 'api/rs' }
tract-proxy = { version = '0.21.8-pre', path = 'api/proxy' }
tract-proxy-sys = { version = '0.21.8-pre', path = 'api/proxy/sys' }
tract-api = { version = "0.21.9-pre", path = 'api' }
tract-core = { version = "0.21.9-pre", path = 'core' }
tract-data = { version = "0.21.9-pre", path = 'data' }
tract-extra = { version = "0.21.9-pre", path = 'extra' }
tract-hir = { version = "0.21.9-pre", path = 'hir' }
tract-libcli = { version = "0.21.9-pre", path = 'libcli' }
tract-linalg = { version = "0.21.9-pre", path = 'linalg' }
tract-metal = { version = "0.21.9-pre", path = 'metal' }
tract-nnef-resources = { version = "0.21.9-pre", path = 'nnef/nnef-resources' }
tract-nnef = { version = "0.21.9-pre", path = 'nnef' }
tract-onnx-opl = { version = "0.21.9-pre", path = 'onnx-opl' }
tract-onnx = { version = "0.21.9-pre", path = 'onnx' }
tract-pulse-opl = { version = "0.21.9-pre", path = 'pulse-opl' }
tract-pulse = { version = "0.21.9-pre", path = 'pulse' }
tract-tensorflow = { version = "0.21.9-pre", path = 'tensorflow' }
tract-tflite = { version = "0.21.9-pre", path = 'tflite' }
tract-rs = { version = "0.21.9-pre", path = 'api/rs' }
tract-proxy = { version = "0.21.9-pre", path = 'api/proxy' }
tract-proxy-sys = { version = "0.21.9-pre", path = 'api/proxy/sys' }
tract-ffi = { version = "0.21.9-pre" }
tract = { version = "0.21.9-pre" }


[profile.opt-no-lto]
Expand Down
2 changes: 1 addition & 1 deletion api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract-api"
version = "0.21.8"
version = "0.21.9-pre"
license = "MIT OR Apache-2.0"
authors = ["Mathieu Poumeyrol <[email protected]>"]
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand Down
2 changes: 1 addition & 1 deletion api/ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract-ffi"
version = "0.21.8"
version = "0.21.9-pre"
license = "MIT OR Apache-2.0"
authors = ["Mathieu Poumeyrol <[email protected]>"]
description = "Tiny, no-nonsense, self contained, neural network inference"
Expand Down
2 changes: 1 addition & 1 deletion api/proxy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract-proxy"
version = "0.21.8"
version = "0.21.9-pre"
license = "MIT OR Apache-2.0"
authors = ["Mathieu Poumeyrol <[email protected]>"]
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand Down
2 changes: 1 addition & 1 deletion api/proxy/sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract-proxy-sys"
version = "0.21.8"
version = "0.21.9-pre"
license = "MIT OR Apache-2.0"
authors = ["Mathieu Poumeyrol <[email protected]>"]
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand Down
2 changes: 1 addition & 1 deletion api/rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract-rs"
version = "0.21.8"
version = "0.21.9-pre"
license = "MIT OR Apache-2.0"
authors = ["Mathieu Poumeyrol <[email protected]>"]
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand Down
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract"
version = "0.21.8"
version = "0.21.9-pre"
authors = [ "Romain Liautaud <[email protected]>", "Mathieu Poumeyrol <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract-core"
version = "0.21.8"
version = "0.21.9-pre"
license = "MIT OR Apache-2.0"
authors = ["Mathieu Poumeyrol <[email protected]>"]
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand Down
2 changes: 1 addition & 1 deletion data/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract-data"
version = "0.21.8"
version = "0.21.9-pre"
license = "MIT OR Apache-2.0"
authors = ["Mathieu Poumeyrol <[email protected]>"]
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand Down
2 changes: 1 addition & 1 deletion extra/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract-extra"
version = "0.21.8"
version = "0.21.9-pre"
license = "MIT OR Apache-2.0"
authors = ["Mathieu Poumeyrol <[email protected]>"]
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand Down
2 changes: 1 addition & 1 deletion hir/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract-hir"
version = "0.21.8"
version = "0.21.9-pre"
license = "MIT OR Apache-2.0"
authors = ["Mathieu Poumeyrol <[email protected]>"]
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand Down
2 changes: 1 addition & 1 deletion libcli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract-libcli"
version = "0.21.8"
version = "0.21.9-pre"
license = "MIT OR Apache-2.0"
authors = ["Mathieu Poumeyrol <[email protected]>"]
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand Down
2 changes: 1 addition & 1 deletion linalg/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract-linalg"
version = "0.21.8"
version = "0.21.9-pre"
license = "MIT OR Apache-2.0"
authors = ["Mathieu Poumeyrol <[email protected]>"]
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand Down
2 changes: 1 addition & 1 deletion metal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract-metal"
version = "0.21.8"
version = "0.21.9-pre"
license = "MIT OR Apache-2.0"
authors = [
"Hubert de La Jonquière <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion nnef/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract-nnef"
version = "0.21.8"
version = "0.21.9-pre"
authors = ["Mathieu Poumeyrol <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand Down
2 changes: 1 addition & 1 deletion nnef/nnef-resources/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract-nnef-resources"
version = "0.21.8"
version = "0.21.9-pre"
authors = [
"Mathieu Poumeyrol <[email protected]>",
"Hubert de La Jonquière <[email protected]>"
Expand Down
2 changes: 1 addition & 1 deletion onnx-opl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract-onnx-opl"
version = "0.21.8"
version = "0.21.9-pre"
authors = ["Mathieu Poumeyrol <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand Down
2 changes: 1 addition & 1 deletion onnx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract-onnx"
version = "0.21.8"
version = "0.21.9-pre"
authors = ["Mathieu Poumeyrol <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand Down
3 changes: 2 additions & 1 deletion post-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@ fi
for path in $ALL_CRATES_PATH
do
crate=$(tomato get package.name $path/Cargo.toml)
echo $crate
tomato set package.version $VERSION $path/Cargo.toml > /dev/null
./.change_crate_dep.sh $crate $VERSION
tomato set workspace.dependencies.$crate.version $VERSION Cargo.toml
done

git commit . -m "post-release $VERSION"
Expand Down
2 changes: 1 addition & 1 deletion pulse-opl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract-pulse-opl"
version = "0.21.8"
version = "0.21.9-pre"
license = "MIT OR Apache-2.0"
authors = ["Mathieu Poumeyrol <[email protected]>"]
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand Down
2 changes: 1 addition & 1 deletion pulse/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract-pulse"
version = "0.21.8"
version = "0.21.9-pre"
license = "MIT OR Apache-2.0"
authors = ["Mathieu Poumeyrol <[email protected]>"]
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand Down
2 changes: 1 addition & 1 deletion tensorflow/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract-tensorflow"
version = "0.21.8"
version = "0.21.9-pre"
authors = ["Mathieu Poumeyrol <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand Down
2 changes: 1 addition & 1 deletion tflite/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract-tflite"
version = "0.21.8"
version = "0.21.9-pre"
authors = ["Mathieu Poumeyrol <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand Down

0 comments on commit 3df1f74

Please sign in to comment.