diff --git a/cli/Cargo.toml b/cli/Cargo.toml index af9c582ee2..fbc3cddcad 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract" -version = "0.20.1-pre" +version = "0.20.2" authors = [ "Romain Liautaud ", "Mathieu Poumeyrol "] license = "MIT/Apache-2.0" description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -34,15 +34,15 @@ rustls.workspace = true scan_fmt.workspace = true serde.workspace = true serde_json.workspace = true -tract-core = { version = "=0.20.1-pre", path = "../core" } -tract-hir = { version = "=0.20.1-pre", path = "../hir" } -tract-nnef = { version = "=0.20.1-pre", path = "../nnef" } -tract-libcli = { version = "=0.20.1-pre", path = "../libcli" } -tract-pulse-opl = { optional = true, version = "=0.20.1-pre", path = "../pulse-opl" } -tract-pulse = { optional = true, version = "=0.20.1-pre", path = "../pulse" } -tract-kaldi = { optional = true, version = "=0.20.1-pre", path = "../kaldi" } -tract-onnx = { optional = true, version = "=0.20.1-pre", path = "../onnx" } -tract-tensorflow = { optional = true, version = "=0.20.1-pre", path = "../tensorflow" } +tract-core = { version = "=0.20.2", path = "../core" } +tract-hir = { version = "=0.20.2", path = "../hir" } +tract-nnef = { version = "=0.20.2", path = "../nnef" } +tract-libcli = { version = "=0.20.2", path = "../libcli" } +tract-pulse-opl = { optional = true, version = "=0.20.2", path = "../pulse-opl" } +tract-pulse = { optional = true, version = "=0.20.2", path = "../pulse" } +tract-kaldi = { optional = true, version = "=0.20.2", path = "../kaldi" } +tract-onnx = { optional = true, version = "=0.20.2", path = "../onnx" } +tract-tensorflow = { optional = true, version = "=0.20.2", path = "../tensorflow" } [features] default = ["kaldi", "onnx", "tf", "pulse", "pulse-opl"] diff --git a/core/Cargo.toml b/core/Cargo.toml index 5ad2a8a257..63f4f7670f 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-core" -version = "0.20.1-pre" +version = "0.20.2" license = "MIT/Apache-2.0" authors = ["Mathieu Poumeyrol "] description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -29,8 +29,8 @@ num-traits.workspace = true num-complex.workspace = true rustfft.workspace = true smallvec.workspace = true -tract-linalg = { version = "=0.20.1-pre", path = "../linalg" } -tract-data = { version = "=0.20.1-pre", path = "../data" } +tract-linalg = { version = "=0.20.2", path = "../linalg" } +tract-data = { version = "=0.20.2", path = "../data" } [features] default = [ ] diff --git a/data/Cargo.toml b/data/Cargo.toml index a3fc8eaee1..1c0f39eacc 100644 --- a/data/Cargo.toml +++ b/data/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-data" -version = "0.20.1-pre" +version = "0.20.2" license = "MIT/Apache-2.0" authors = ["Mathieu Poumeyrol "] description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" diff --git a/examples/jupyter-keras-tract-tf1/Cargo.toml b/examples/jupyter-keras-tract-tf1/Cargo.toml index 5cdfa650a4..0434671db5 100644 --- a/examples/jupyter-keras-tract-tf1/Cargo.toml +++ b/examples/jupyter-keras-tract-tf1/Cargo.toml @@ -9,5 +9,5 @@ edition = "2021" [dependencies] rand.workspace = true -tract-core = { path = "../../core", version = "=0.20.1-pre" } -tract-tensorflow = { path = "../../tensorflow", version = "=0.20.1-pre" } +tract-core = { path = "../../core", version = "=0.20.2" } +tract-tensorflow = { path = "../../tensorflow", version = "=0.20.2" } diff --git a/examples/jupyter-keras-tract-tf2/Cargo.toml b/examples/jupyter-keras-tract-tf2/Cargo.toml index 1541e69fca..ac7db3273a 100644 --- a/examples/jupyter-keras-tract-tf2/Cargo.toml +++ b/examples/jupyter-keras-tract-tf2/Cargo.toml @@ -10,5 +10,5 @@ edition = "2021" [dependencies] rand.workspace = true -tract-core = { path = "../../core", version = "=0.20.1-pre" } -tract-onnx = { path = "../../onnx", version = "=0.20.1-pre" } +tract-core = { path = "../../core", version = "=0.20.2" } +tract-onnx = { path = "../../onnx", version = "=0.20.2" } diff --git a/examples/nnef-dump-mobilenet-v2/Cargo.toml b/examples/nnef-dump-mobilenet-v2/Cargo.toml index e7858ba822..37e5917f81 100644 --- a/examples/nnef-dump-mobilenet-v2/Cargo.toml +++ b/examples/nnef-dump-mobilenet-v2/Cargo.toml @@ -8,4 +8,4 @@ edition = "2021" [dependencies] image.workspace = true -tract-nnef = { version = "=0.20.1-pre", path = "../../nnef" } +tract-nnef = { version = "=0.20.2", path = "../../nnef" } diff --git a/examples/nnef-mobilenet-v2/Cargo.toml b/examples/nnef-mobilenet-v2/Cargo.toml index 6adedbe19e..5b91d6f7ce 100644 --- a/examples/nnef-mobilenet-v2/Cargo.toml +++ b/examples/nnef-mobilenet-v2/Cargo.toml @@ -8,4 +8,4 @@ edition = "2021" [dependencies] image.workspace = true -tract-nnef = { version = "=0.20.1-pre", path = "../../nnef" } +tract-nnef = { version = "=0.20.2", path = "../../nnef" } diff --git a/examples/onnx-mobilenet-v2/Cargo.toml b/examples/onnx-mobilenet-v2/Cargo.toml index 3e9d4977a1..b740db7c0c 100644 --- a/examples/onnx-mobilenet-v2/Cargo.toml +++ b/examples/onnx-mobilenet-v2/Cargo.toml @@ -7,4 +7,4 @@ edition = "2021" [dependencies] image.workspace = true -tract-onnx = { path = "../../onnx", version = "=0.20.1-pre" } +tract-onnx = { path = "../../onnx", version = "=0.20.2" } diff --git a/examples/pytorch-albert-v2/Cargo.toml b/examples/pytorch-albert-v2/Cargo.toml index f0ac33f3e6..289d744212 100644 --- a/examples/pytorch-albert-v2/Cargo.toml +++ b/examples/pytorch-albert-v2/Cargo.toml @@ -8,4 +8,4 @@ edition = "2021" [dependencies] ndarray.workspace = true tokenizers.workspace = true -tract-onnx = { path = "../../onnx", version = "=0.20.1-pre" } +tract-onnx = { path = "../../onnx", version = "=0.20.2" } diff --git a/examples/pytorch-resnet/Cargo.toml b/examples/pytorch-resnet/Cargo.toml index f013b4e796..966ae91a02 100644 --- a/examples/pytorch-resnet/Cargo.toml +++ b/examples/pytorch-resnet/Cargo.toml @@ -9,4 +9,4 @@ edition = "2021" [dependencies] image.workspace = true -tract-onnx = { path = "../../onnx", version = "=0.20.1-pre" } +tract-onnx = { path = "../../onnx", version = "=0.20.2" } diff --git a/examples/tensorflow-mobilenet-v2/Cargo.toml b/examples/tensorflow-mobilenet-v2/Cargo.toml index d982472caf..2e853c35fd 100644 --- a/examples/tensorflow-mobilenet-v2/Cargo.toml +++ b/examples/tensorflow-mobilenet-v2/Cargo.toml @@ -7,4 +7,4 @@ edition = "2021" [dependencies] image.workspace = true -tract-tensorflow = { path = "../../tensorflow", version = "=0.20.1-pre" } +tract-tensorflow = { path = "../../tensorflow", version = "=0.20.2" } diff --git a/ffi/Cargo.toml b/ffi/Cargo.toml index 544bce1298..67ac43553b 100644 --- a/ffi/Cargo.toml +++ b/ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-ffi" -version = "0.20.1-pre" +version = "0.20.2" license = "MIT/Apache-2.0" authors = ["Mathieu Poumeyrol "] description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -23,9 +23,9 @@ anyhow.workspace = true flate2.workspace = true serde.workspace = true serde_json.workspace = true -tract-data = { path = "../data", version = "=0.20.1-pre" } -tract-nnef = { path = "../nnef", version = "=0.20.1-pre" } -tract-onnx = { path = "../onnx", version = "=0.20.1-pre" } -tract-pulse = { path = "../pulse", version = "=0.20.1-pre" } -tract-tensorflow = { path = "../tensorflow", version = "=0.20.1-pre" } -tract-libcli = { path = "../libcli", version = "=0.20.1-pre" } +tract-data = { path = "../data", version = "=0.20.2" } +tract-nnef = { path = "../nnef", version = "=0.20.2" } +tract-onnx = { path = "../onnx", version = "=0.20.2" } +tract-pulse = { path = "../pulse", version = "=0.20.2" } +tract-tensorflow = { path = "../tensorflow", version = "=0.20.2" } +tract-libcli = { path = "../libcli", version = "=0.20.2" } diff --git a/harness/core-proptest-pulse/Cargo.toml b/harness/core-proptest-pulse/Cargo.toml index 3038c1e52f..8c7777a5f7 100644 --- a/harness/core-proptest-pulse/Cargo.toml +++ b/harness/core-proptest-pulse/Cargo.toml @@ -6,10 +6,10 @@ license = "MIT/Apache-2.0" edition = "2021" [dependencies] -tract-hir = { path = "../../hir", version = "=0.20.1-pre" } -tract-pulse = { path = "../../pulse", version = "=0.20.1-pre" } -tract-onnx = { path = "../../onnx", version = "=0.20.1-pre" } -tract-onnx-opl = { path = "../../onnx-opl", version = "=0.20.1-pre" } +tract-hir = { path = "../../hir", version = "=0.20.2" } +tract-pulse = { path = "../../pulse", version = "=0.20.2" } +tract-onnx = { path = "../../onnx", version = "=0.20.2" } +tract-onnx-opl = { path = "../../onnx-opl", version = "=0.20.2" } [dev-dependencies] log.workspace = true diff --git a/harness/lstm-proptest-onnx-vs-tf/Cargo.toml b/harness/lstm-proptest-onnx-vs-tf/Cargo.toml index 3bbcd0f670..8975f40201 100644 --- a/harness/lstm-proptest-onnx-vs-tf/Cargo.toml +++ b/harness/lstm-proptest-onnx-vs-tf/Cargo.toml @@ -7,5 +7,5 @@ edition = "2021" [dependencies] proptest.workspace = true -tract-tensorflow = { path = "../../tensorflow", version = "=0.20.1-pre" } -tract-onnx = { path = "../../onnx", version = "=0.20.1-pre" } +tract-tensorflow = { path = "../../tensorflow", version = "=0.20.2" } +tract-onnx = { path = "../../onnx", version = "=0.20.2" } diff --git a/harness/nnef-inceptionv3/Cargo.toml b/harness/nnef-inceptionv3/Cargo.toml index f861c0580e..d929e04a8c 100644 --- a/harness/nnef-inceptionv3/Cargo.toml +++ b/harness/nnef-inceptionv3/Cargo.toml @@ -8,8 +8,8 @@ edition = "2021" [dependencies] flate2.workspace = true image.workspace = true -tract-core = { version = "=0.20.1-pre", path = "../../core" } -tract-nnef = { version = "=0.20.1-pre", path = "../../nnef" } +tract-core = { version = "=0.20.2", path = "../../core" } +tract-nnef = { version = "=0.20.2", path = "../../nnef" } [dev-dependencies] dinghy-test.workspace = true diff --git a/harness/onnx-proptest/Cargo.toml b/harness/onnx-proptest/Cargo.toml index 6e950405c0..4f6bfb4ad4 100644 --- a/harness/onnx-proptest/Cargo.toml +++ b/harness/onnx-proptest/Cargo.toml @@ -12,5 +12,5 @@ onnxruntime = { path = "../../../../github/onnxruntime-rs/onnxruntime" } onnx-pb = "0.1.4" anyhow = "1.0.56" prost = "0.11.0" -tract-onnx = { path = "../../onnx" , version = "=0.20.1-pre" } +tract-onnx = { path = "../../onnx" , version = "=0.20.2" } proptest = "1.0.0" diff --git a/harness/onnx-test-suite/Cargo.toml b/harness/onnx-test-suite/Cargo.toml index 8484c249cb..0c1c212c5b 100644 --- a/harness/onnx-test-suite/Cargo.toml +++ b/harness/onnx-test-suite/Cargo.toml @@ -10,9 +10,9 @@ bytes.workspace = true fs2.workspace = true log.workspace = true prost.workspace = true -tract-core = { path = "../../core", version = "=0.20.1-pre" } -tract-nnef = { path = "../../nnef", version = "=0.20.1-pre" } -tract-onnx = { path = "../../onnx", version = "=0.20.1-pre" } +tract-core = { path = "../../core", version = "=0.20.2" } +tract-nnef = { path = "../../nnef", version = "=0.20.2" } +tract-onnx = { path = "../../onnx", version = "=0.20.2" } [features] onnx_1_4_1 = [] diff --git a/harness/onnx-test-suite/debug-utils/Cargo.toml b/harness/onnx-test-suite/debug-utils/Cargo.toml index dda0a44f40..2cae402f84 100644 --- a/harness/onnx-test-suite/debug-utils/Cargo.toml +++ b/harness/onnx-test-suite/debug-utils/Cargo.toml @@ -9,4 +9,4 @@ members = [] [dependencies] protobuf = "*" -tract-onnx = { path = "../../../onnx" , version = "=0.20.1-pre" } +tract-onnx = { path = "../../../onnx" , version = "=0.20.2" } diff --git a/harness/tf-inceptionv3/Cargo.toml b/harness/tf-inceptionv3/Cargo.toml index 462ef7545a..188362a8c1 100644 --- a/harness/tf-inceptionv3/Cargo.toml +++ b/harness/tf-inceptionv3/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT/Apache-2.0" [dependencies] image.workspace = true -tract-tensorflow = { path = "../../tensorflow", version = "=0.20.1-pre" } +tract-tensorflow = { path = "../../tensorflow", version = "=0.20.2" } [features] conform = [ "tract-tensorflow/conform" ] diff --git a/harness/tf-mobilenet-v2/Cargo.toml b/harness/tf-mobilenet-v2/Cargo.toml index bdd8e3b13e..b10606c6af 100644 --- a/harness/tf-mobilenet-v2/Cargo.toml +++ b/harness/tf-mobilenet-v2/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT/Apache-2.0" [dependencies] image.workspace = true -tract-tensorflow = { path = "../../tensorflow", version = "=0.20.1-pre" } +tract-tensorflow = { path = "../../tensorflow", version = "=0.20.2" } [dev-dependencies] dinghy-test.workspace = true diff --git a/harness/tf-moz-deepspeech/Cargo.toml b/harness/tf-moz-deepspeech/Cargo.toml index 5949e0bc28..3c7ef1bb5b 100644 --- a/harness/tf-moz-deepspeech/Cargo.toml +++ b/harness/tf-moz-deepspeech/Cargo.toml @@ -7,7 +7,7 @@ license = "MIT/Apache-2.0" [dependencies] log.workspace = true -tract-tensorflow = { path = "../../tensorflow", version = "=0.20.1-pre" } +tract-tensorflow = { path = "../../tensorflow", version = "=0.20.2" } [dev-dependencies] env_logger.workspace = true diff --git a/hir/Cargo.toml b/hir/Cargo.toml index 32e81cb718..a664377d6a 100644 --- a/hir/Cargo.toml +++ b/hir/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-hir" -version = "0.20.1-pre" +version = "0.20.2" license = "MIT/Apache-2.0" authors = ["Mathieu Poumeyrol "] description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -17,7 +17,7 @@ maintenance = { status = "actively-developed" } derive-new.workspace = true log.workspace = true -tract-core = { version = "=0.20.1-pre", path = "../core" } +tract-core = { version = "=0.20.2", path = "../core" } [dev-dependencies] env_logger.workspace = true diff --git a/kaldi/Cargo.toml b/kaldi/Cargo.toml index 7bde93c4ae..51ad5dd630 100644 --- a/kaldi/Cargo.toml +++ b/kaldi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-kaldi" -version = "0.20.1-pre" +version = "0.20.2" authors = [ "Mathieu Poumeyrol ", "Theodore Bluche " @@ -22,5 +22,5 @@ lazy_static.workspace = true log.workspace = true maplit.workspace = true nom.workspace = true -tract-hir = { version = "=0.20.1-pre", path = "../hir" } -tract-pulse = { version = "=0.20.1-pre", path = "../pulse" } +tract-hir = { version = "=0.20.2", path = "../hir" } +tract-pulse = { version = "=0.20.2", path = "../pulse" } diff --git a/libcli/Cargo.toml b/libcli/Cargo.toml index ea4ff061b1..9fd0bbd2d5 100644 --- a/libcli/Cargo.toml +++ b/libcli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-libcli" -version = "0.20.1-pre" +version = "0.20.2" license = "MIT/Apache-2.0" authors = ["Mathieu Poumeyrol "] description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -23,9 +23,9 @@ py_literal.workspace = true rand.workspace = true serde.workspace = true serde_json.workspace = true -tract-core = { version = "=0.20.1-pre", path = "../core" } -tract-hir = { version = "=0.20.1-pre", path = "../hir" } -tract-onnx = { version = "=0.20.1-pre", path = "../onnx", optional = true } +tract-core = { version = "=0.20.2", path = "../core" } +tract-hir = { version = "=0.20.2", path = "../hir" } +tract-onnx = { version = "=0.20.2", path = "../onnx", optional = true } [features] # hir = ["tract-hir"] diff --git a/linalg/Cargo.toml b/linalg/Cargo.toml index 7073e24559..b933e95d1b 100644 --- a/linalg/Cargo.toml +++ b/linalg/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-linalg" -version = "0.20.1-pre" +version = "0.20.2" license = "MIT/Apache-2.0" authors = ["Mathieu Poumeyrol "] description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -22,7 +22,7 @@ log.workspace = true num-traits.workspace = true paste.workspace = true scan_fmt.workspace = true -tract-data = { version = "=0.20.1-pre", path = "../data" } +tract-data = { version = "=0.20.2", path = "../data" } [build-dependencies] cc.workspace = true diff --git a/linalg/cost_model/Cargo.toml b/linalg/cost_model/Cargo.toml index 8a349030ca..a193743627 100644 --- a/linalg/cost_model/Cargo.toml +++ b/linalg/cost_model/Cargo.toml @@ -15,5 +15,5 @@ colorous = "1.0.6" nu_ansi_term = "0.12.1" pbr = "1" readings-probe = "0.1.4" -tract-linalg = { path="../../linalg", version = "=0.20.1-pre" } -tract-data = { path="../../data", version = "=0.20.1-pre" } +tract-linalg = { path="../../linalg", version = "=0.20.2" } +tract-data = { path="../../data", version = "=0.20.2" } diff --git a/linalg/matmul-bench/Cargo.toml b/linalg/matmul-bench/Cargo.toml index 277f2bbb47..d6a7ddc2ad 100644 --- a/linalg/matmul-bench/Cargo.toml +++ b/linalg/matmul-bench/Cargo.toml @@ -12,8 +12,8 @@ cblas = { version = "0.3", optional = true } accelerate-src = { version = "0.3", optional = true } blis-src = { version = "0.2", features = ["static"], optional = true } matrixmultiply = "*" -tract-data = { path = "../../data", version = "=0.20.1-pre" } -tract-linalg = { path = "../../linalg", version = "=0.20.1-pre" } +tract-data = { path = "../../data", version = "=0.20.2" } +tract-linalg = { path = "../../linalg", version = "=0.20.2" } [features] diff --git a/nnef/Cargo.toml b/nnef/Cargo.toml index b8fd0539aa..d5313e0521 100644 --- a/nnef/Cargo.toml +++ b/nnef/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-nnef" -version = "0.20.1-pre" +version = "0.20.2" authors = ["Mathieu Poumeyrol "] license = "MIT/Apache-2.0" description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -21,7 +21,7 @@ nom.workspace = true tar.workspace = true flate2 = { workspace = true, optional = true } walkdir.workspace = true -tract-core = { version = "=0.20.1-pre", path = "../core" } +tract-core = { version = "=0.20.2", path = "../core" } [dev-dependencies] temp-dir = "0.1.11" diff --git a/nnef/nnef-resources/Cargo.toml b/nnef/nnef-resources/Cargo.toml index 7a2264c1d2..2ba2256515 100644 --- a/nnef/nnef-resources/Cargo.toml +++ b/nnef/nnef-resources/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-nnef-resources" -version = "0.20.1-pre" +version = "0.20.2" authors = [ "Mathieu Poumeyrol ", "Hubert de La Jonquière " @@ -22,6 +22,6 @@ serde_json.workspace = true serde.workspace = true anyhow.workspace = true nom.workspace = true -tract-nnef = { version = "=0.20.1-pre", path = "../../nnef" } +tract-nnef = { version = "=0.20.2", path = "../../nnef" } diff --git a/onnx-opl/Cargo.toml b/onnx-opl/Cargo.toml index ba02c2be00..e0f983b4bc 100644 --- a/onnx-opl/Cargo.toml +++ b/onnx-opl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-onnx-opl" -version = "0.20.1-pre" +version = "0.20.2" authors = ["Mathieu Poumeyrol "] license = "MIT/Apache-2.0" description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -19,7 +19,7 @@ log.workspace = true rand.workspace = true rand_distr.workspace = true rustfft.workspace = true -tract-nnef = { version = "=0.20.1-pre", path = "../nnef" } +tract-nnef = { version = "=0.20.2", path = "../nnef" } [dev-dependencies] env_logger.workspace = true diff --git a/onnx/Cargo.toml b/onnx/Cargo.toml index 032ae3bfde..439d31f401 100644 --- a/onnx/Cargo.toml +++ b/onnx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-onnx" -version = "0.20.1-pre" +version = "0.20.2" authors = ["Mathieu Poumeyrol "] license = "MIT/Apache-2.0" description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -25,9 +25,9 @@ memmap2.workspace = true num-integer.workspace = true prost.workspace = true smallvec.workspace = true -tract-nnef = { version = "=0.20.1-pre", path = "../nnef" } -tract-hir = { version = "=0.20.1-pre", path = "../hir" } -tract-onnx-opl = { version = "=0.20.1-pre", path = "../onnx-opl" } +tract-nnef = { version = "=0.20.2", path = "../nnef" } +tract-hir = { version = "=0.20.2", path = "../hir" } +tract-onnx-opl = { version = "=0.20.2", path = "../onnx-opl" } [dev-dependencies] env_logger.workspace = true diff --git a/pulse-opl/Cargo.toml b/pulse-opl/Cargo.toml index 5f5b31b66c..0c85ee825c 100644 --- a/pulse-opl/Cargo.toml +++ b/pulse-opl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-pulse-opl" -version = "0.20.1-pre" +version = "0.20.2" license = "MIT/Apache-2.0" authors = ["Mathieu Poumeyrol "] description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -16,7 +16,7 @@ maintenance = { status = "actively-developed" } [dependencies] downcast-rs.workspace = true lazy_static.workspace = true -tract-nnef = { version = "=0.20.1-pre", path = "../nnef" } +tract-nnef = { version = "=0.20.2", path = "../nnef" } [features] complex = [ "tract-nnef/complex" ] diff --git a/pulse/Cargo.toml b/pulse/Cargo.toml index 9e478284f7..955affb07e 100644 --- a/pulse/Cargo.toml +++ b/pulse/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-pulse" -version = "0.20.1-pre" +version = "0.20.2" license = "MIT/Apache-2.0" authors = ["Mathieu Poumeyrol "] description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -17,5 +17,5 @@ maintenance = { status = "actively-developed" } downcast-rs.workspace = true lazy_static.workspace = true log.workspace = true -tract-pulse-opl = { version = "=0.20.1-pre", path = "../pulse-opl" } +tract-pulse-opl = { version = "=0.20.2", path = "../pulse-opl" } diff --git a/tensorflow/Cargo.toml b/tensorflow/Cargo.toml index 4e64d7df91..23d6a73801 100644 --- a/tensorflow/Cargo.toml +++ b/tensorflow/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-tensorflow" -version = "0.20.1-pre" +version = "0.20.2" authors = ["Mathieu Poumeyrol "] license = "MIT/Apache-2.0" description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -23,8 +23,8 @@ memmap2.workspace = true prost.workspace = true prost-types.workspace = true tensorflow = { workspace = true, optional = true } -tract-hir = { version = "=0.20.1-pre", path = "../hir" } -tract-pulse = { version = "=0.20.1-pre", path = "../pulse" } +tract-hir = { version = "=0.20.2", path = "../hir" } +tract-pulse = { version = "=0.20.2", path = "../pulse" } # [build-dependencies] # protobuf-src = "1.0.5+3.19.3"