From 49810048cfb699cb6d4eace285eafae4b63df535 Mon Sep 17 00:00:00 2001 From: Mathieu Poumeyrol Date: Thu, 20 Apr 2023 18:54:29 +0200 Subject: [PATCH] release 0.19.12 --- CHANGELOG.md | 3 +++ cli/Cargo.toml | 20 +++++++++---------- core/Cargo.toml | 6 +++--- data/Cargo.toml | 2 +- examples/jupyter-keras-tract-tf1/Cargo.toml | 4 ++-- examples/jupyter-keras-tract-tf2/Cargo.toml | 4 ++-- examples/nnef-dump-mobilenet-v2/Cargo.toml | 2 +- examples/nnef-mobilenet-v2/Cargo.toml | 2 +- examples/onnx-mobilenet-v2/Cargo.toml | 2 +- examples/pytorch-albert-v2/Cargo.toml | 2 +- examples/pytorch-resnet/Cargo.toml | 2 +- examples/tensorflow-mobilenet-v2/Cargo.toml | 2 +- ffi/Cargo.toml | 14 ++++++------- harness/core-proptest-pulse/Cargo.toml | 8 ++++---- harness/lstm-proptest-onnx-vs-tf/Cargo.toml | 4 ++-- harness/nnef-inceptionv3/Cargo.toml | 4 ++-- harness/onnx-proptest/Cargo.toml | 2 +- harness/onnx-test-suite/Cargo.toml | 6 +++--- .../onnx-test-suite/debug-utils/Cargo.toml | 2 +- harness/tf-inceptionv3/Cargo.toml | 2 +- harness/tf-mobilenet-v2/Cargo.toml | 2 +- harness/tf-moz-deepspeech/Cargo.toml | 2 +- hir/Cargo.toml | 4 ++-- kaldi/Cargo.toml | 6 +++--- libcli/Cargo.toml | 8 ++++---- linalg/Cargo.toml | 4 ++-- linalg/cost_model/Cargo.toml | 4 ++-- linalg/matmul-bench/Cargo.toml | 4 ++-- nnef/Cargo.toml | 4 ++-- nnef/nnef-resources/Cargo.toml | 4 ++-- onnx-opl/Cargo.toml | 4 ++-- onnx/Cargo.toml | 8 ++++---- pulse-opl/Cargo.toml | 4 ++-- pulse/Cargo.toml | 4 ++-- tensorflow/Cargo.toml | 6 +++--- 35 files changed, 82 insertions(+), 79 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 35bf1d2e39..dd00424d86 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,7 @@ +# 0.19.11 - 2023-04-20 +* bind set_output_names() through ffi and python + # 0.19.9 & 0.19.10 - 2023-04-17 * HardSwiwh ONNX, tract_core_hard_swish in NNEF/OPL * introducing tract_core_submodel in NNEF/OPL diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 2bf3958109..24a3d9caeb 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract" -version = "0.19.11-pre" +version = "0.19.12" 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.19.11-pre", path = "../core" } -tract-hir = { version = "=0.19.11-pre", path = "../hir" } -tract-nnef = { version = "=0.19.11-pre", path = "../nnef" } -tract-libcli = { version = "=0.19.11-pre", path = "../libcli" } -tract-pulse-opl = { optional = true, version = "=0.19.11-pre", path = "../pulse-opl" } -tract-pulse = { optional = true, version = "=0.19.11-pre", path = "../pulse" } -tract-kaldi = { optional = true, version = "=0.19.11-pre", path = "../kaldi" } -tract-onnx = { optional = true, version = "=0.19.11-pre", path = "../onnx" } -tract-tensorflow = { optional = true, version = "=0.19.11-pre", path = "../tensorflow" } +tract-core = { version = "=0.19.12", path = "../core" } +tract-hir = { version = "=0.19.12", path = "../hir" } +tract-nnef = { version = "=0.19.12", path = "../nnef" } +tract-libcli = { version = "=0.19.12", path = "../libcli" } +tract-pulse-opl = { optional = true, version = "=0.19.12", path = "../pulse-opl" } +tract-pulse = { optional = true, version = "=0.19.12", path = "../pulse" } +tract-kaldi = { optional = true, version = "=0.19.12", path = "../kaldi" } +tract-onnx = { optional = true, version = "=0.19.12", path = "../onnx" } +tract-tensorflow = { optional = true, version = "=0.19.12", path = "../tensorflow" } [features] default = ["kaldi", "onnx", "tf", "pulse", "pulse-opl"] diff --git a/core/Cargo.toml b/core/Cargo.toml index a7c5bc95ab..de78ce1f45 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-core" -version = "0.19.11-pre" +version = "0.19.12" license = "MIT/Apache-2.0" authors = ["Mathieu Poumeyrol "] description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -29,8 +29,8 @@ num-integer.workspace = true num-traits.workspace = true rustfft.workspace = true smallvec.workspace = true -tract-linalg = { version = "=0.19.11-pre", path = "../linalg" } -tract-data = { version = "=0.19.11-pre", path = "../data" } +tract-linalg = { version = "=0.19.12", path = "../linalg" } +tract-data = { version = "=0.19.12", path = "../data" } [features] default = [ "paranoid_assertions" ] diff --git a/data/Cargo.toml b/data/Cargo.toml index 16c6fbf1d4..0c21b69c9e 100644 --- a/data/Cargo.toml +++ b/data/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-data" -version = "0.19.11-pre" +version = "0.19.12" 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 7232d7e127..c52d7ced2e 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.19.11-pre" } -tract-tensorflow = { path = "../../tensorflow", version = "=0.19.11-pre" } +tract-core = { path = "../../core", version = "=0.19.12" } +tract-tensorflow = { path = "../../tensorflow", version = "=0.19.12" } diff --git a/examples/jupyter-keras-tract-tf2/Cargo.toml b/examples/jupyter-keras-tract-tf2/Cargo.toml index 82d6e3de23..05b10ac72e 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.19.11-pre" } -tract-onnx = { path = "../../onnx", version = "=0.19.11-pre" } +tract-core = { path = "../../core", version = "=0.19.12" } +tract-onnx = { path = "../../onnx", version = "=0.19.12" } diff --git a/examples/nnef-dump-mobilenet-v2/Cargo.toml b/examples/nnef-dump-mobilenet-v2/Cargo.toml index caadc0c6b1..7b76303940 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.19.11-pre", path = "../../nnef" } +tract-nnef = { version = "=0.19.12", path = "../../nnef" } diff --git a/examples/nnef-mobilenet-v2/Cargo.toml b/examples/nnef-mobilenet-v2/Cargo.toml index be0ad17c90..d3aeccbdcb 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.19.11-pre", path = "../../nnef" } +tract-nnef = { version = "=0.19.12", path = "../../nnef" } diff --git a/examples/onnx-mobilenet-v2/Cargo.toml b/examples/onnx-mobilenet-v2/Cargo.toml index 187d57d713..e4e0d851bc 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.19.11-pre" } +tract-onnx = { path = "../../onnx", version = "=0.19.12" } diff --git a/examples/pytorch-albert-v2/Cargo.toml b/examples/pytorch-albert-v2/Cargo.toml index 248c0b298e..772b20b1d0 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.19.11-pre" } +tract-onnx = { path = "../../onnx", version = "=0.19.12" } diff --git a/examples/pytorch-resnet/Cargo.toml b/examples/pytorch-resnet/Cargo.toml index 1083bd68b9..e69005a8cf 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.19.11-pre" } +tract-onnx = { path = "../../onnx", version = "=0.19.12" } diff --git a/examples/tensorflow-mobilenet-v2/Cargo.toml b/examples/tensorflow-mobilenet-v2/Cargo.toml index fed1ad6cf9..7beb33f5be 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.19.11-pre" } +tract-tensorflow = { path = "../../tensorflow", version = "=0.19.12" } diff --git a/ffi/Cargo.toml b/ffi/Cargo.toml index b2598683c9..dd55971f49 100644 --- a/ffi/Cargo.toml +++ b/ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-ffi" -version = "0.19.11-pre" +version = "0.19.12" 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.19.11-pre" } -tract-nnef = { path = "../nnef", version = "=0.19.11-pre" } -tract-onnx = { path = "../onnx", version = "=0.19.11-pre" } -tract-pulse = { path = "../pulse", version = "=0.19.11-pre" } -tract-tensorflow = { path = "../tensorflow", version = "=0.19.11-pre" } -tract-libcli = { path = "../libcli", version = "=0.19.11-pre" } +tract-data = { path = "../data", version = "=0.19.12" } +tract-nnef = { path = "../nnef", version = "=0.19.12" } +tract-onnx = { path = "../onnx", version = "=0.19.12" } +tract-pulse = { path = "../pulse", version = "=0.19.12" } +tract-tensorflow = { path = "../tensorflow", version = "=0.19.12" } +tract-libcli = { path = "../libcli", version = "=0.19.12" } diff --git a/harness/core-proptest-pulse/Cargo.toml b/harness/core-proptest-pulse/Cargo.toml index 5e6a7fde01..8953f51b6b 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.19.11-pre" } -tract-pulse = { path = "../../pulse", version = "=0.19.11-pre" } -tract-onnx = { path = "../../onnx", version = "=0.19.11-pre" } -tract-onnx-opl = { path = "../../onnx-opl", version = "=0.19.11-pre" } +tract-hir = { path = "../../hir", version = "=0.19.12" } +tract-pulse = { path = "../../pulse", version = "=0.19.12" } +tract-onnx = { path = "../../onnx", version = "=0.19.12" } +tract-onnx-opl = { path = "../../onnx-opl", version = "=0.19.12" } [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 37262f804d..7850179346 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.19.11-pre" } -tract-onnx = { path = "../../onnx", version = "=0.19.11-pre" } +tract-tensorflow = { path = "../../tensorflow", version = "=0.19.12" } +tract-onnx = { path = "../../onnx", version = "=0.19.12" } diff --git a/harness/nnef-inceptionv3/Cargo.toml b/harness/nnef-inceptionv3/Cargo.toml index 8e89d89293..3e0746d52f 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.19.11-pre", path = "../../core" } -tract-nnef = { version = "=0.19.11-pre", path = "../../nnef" } +tract-core = { version = "=0.19.12", path = "../../core" } +tract-nnef = { version = "=0.19.12", path = "../../nnef" } [dev-dependencies] dinghy-test.workspace = true diff --git a/harness/onnx-proptest/Cargo.toml b/harness/onnx-proptest/Cargo.toml index 554ddb7ede..e9fe4bdd6d 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.19.11-pre" } +tract-onnx = { path = "../../onnx" , version = "=0.19.12" } proptest = "1.0.0" diff --git a/harness/onnx-test-suite/Cargo.toml b/harness/onnx-test-suite/Cargo.toml index b3c3fe3e7d..d5d246152c 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.19.11-pre" } -tract-nnef = { path = "../../nnef", version = "=0.19.11-pre" } -tract-onnx = { path = "../../onnx", version = "=0.19.11-pre" } +tract-core = { path = "../../core", version = "=0.19.12" } +tract-nnef = { path = "../../nnef", version = "=0.19.12" } +tract-onnx = { path = "../../onnx", version = "=0.19.12" } [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 9852c0bac6..fe1d65ed8c 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.19.11-pre" } +tract-onnx = { path = "../../../onnx" , version = "=0.19.12" } diff --git a/harness/tf-inceptionv3/Cargo.toml b/harness/tf-inceptionv3/Cargo.toml index 50827a9308..a4743eeabb 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.19.11-pre" } +tract-tensorflow = { path = "../../tensorflow", version = "=0.19.12" } [features] conform = [ "tract-tensorflow/conform" ] diff --git a/harness/tf-mobilenet-v2/Cargo.toml b/harness/tf-mobilenet-v2/Cargo.toml index ba5b06f7c6..8a52b46f13 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.19.11-pre" } +tract-tensorflow = { path = "../../tensorflow", version = "=0.19.12" } [dev-dependencies] dinghy-test.workspace = true diff --git a/harness/tf-moz-deepspeech/Cargo.toml b/harness/tf-moz-deepspeech/Cargo.toml index 743b5c0d3b..2a38e1945a 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.19.11-pre" } +tract-tensorflow = { path = "../../tensorflow", version = "=0.19.12" } [dev-dependencies] env_logger.workspace = true diff --git a/hir/Cargo.toml b/hir/Cargo.toml index 9729953b12..545aa919e8 100644 --- a/hir/Cargo.toml +++ b/hir/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-hir" -version = "0.19.11-pre" +version = "0.19.12" license = "MIT/Apache-2.0" authors = ["Mathieu Poumeyrol "] description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -18,7 +18,7 @@ derive-new.workspace = true educe.workspace = true log.workspace = true -tract-core = { version = "=0.19.11-pre", path = "../core" } +tract-core = { version = "=0.19.12", path = "../core" } [dev-dependencies] env_logger.workspace = true diff --git a/kaldi/Cargo.toml b/kaldi/Cargo.toml index 2ca09cfd08..b581a874c4 100644 --- a/kaldi/Cargo.toml +++ b/kaldi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-kaldi" -version = "0.19.11-pre" +version = "0.19.12" authors = [ "Mathieu Poumeyrol ", "Theodore Bluche " @@ -23,5 +23,5 @@ lazy_static.workspace = true log.workspace = true maplit.workspace = true nom.workspace = true -tract-hir = { version = "=0.19.11-pre", path = "../hir" } -tract-pulse = { version = "=0.19.11-pre", path = "../pulse" } +tract-hir = { version = "=0.19.12", path = "../hir" } +tract-pulse = { version = "=0.19.12", path = "../pulse" } diff --git a/libcli/Cargo.toml b/libcli/Cargo.toml index 32be20e71b..60c63ce6db 100644 --- a/libcli/Cargo.toml +++ b/libcli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-libcli" -version = "0.19.11-pre" +version = "0.19.12" 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.19.11-pre", path = "../core" } -tract-hir = { version = "=0.19.11-pre", path = "../hir" } -tract-onnx = { version = "=0.19.11-pre", path = "../onnx", optional = true } +tract-core = { version = "=0.19.12", path = "../core" } +tract-hir = { version = "=0.19.12", path = "../hir" } +tract-onnx = { version = "=0.19.12", path = "../onnx", optional = true } [features] # hir = ["tract-hir"] diff --git a/linalg/Cargo.toml b/linalg/Cargo.toml index fa5b532f63..6f41f99b3a 100644 --- a/linalg/Cargo.toml +++ b/linalg/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-linalg" -version = "0.19.11-pre" +version = "0.19.12" 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.19.11-pre", path = "../data" } +tract-data = { version = "=0.19.12", path = "../data" } [build-dependencies] cc.workspace = true diff --git a/linalg/cost_model/Cargo.toml b/linalg/cost_model/Cargo.toml index 50fbf90cca..b11d6090f4 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.19.11-pre" } -tract-data = { path="../../data", version = "=0.19.11-pre" } +tract-linalg = { path="../../linalg", version = "=0.19.12" } +tract-data = { path="../../data", version = "=0.19.12" } diff --git a/linalg/matmul-bench/Cargo.toml b/linalg/matmul-bench/Cargo.toml index e8913b5acc..548fcd38ec 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.19.11-pre" } -tract-linalg = { path = "../../linalg", version = "=0.19.11-pre" } +tract-data = { path = "../../data", version = "=0.19.12" } +tract-linalg = { path = "../../linalg", version = "=0.19.12" } [features] diff --git a/nnef/Cargo.toml b/nnef/Cargo.toml index 7a1848e2b7..7810dbcedb 100644 --- a/nnef/Cargo.toml +++ b/nnef/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-nnef" -version = "0.19.11-pre" +version = "0.19.12" 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.19.11-pre", path = "../core" } +tract-core = { version = "=0.19.12", path = "../core" } [dev-dependencies] temp-dir = "0.1.11" diff --git a/nnef/nnef-resources/Cargo.toml b/nnef/nnef-resources/Cargo.toml index 9b86310a96..1b5c0f9214 100644 --- a/nnef/nnef-resources/Cargo.toml +++ b/nnef/nnef-resources/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-nnef-resources" -version = "0.19.11-pre" +version = "0.19.12" 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.19.11-pre", path = "../../nnef" } +tract-nnef = { version = "=0.19.12", path = "../../nnef" } diff --git a/onnx-opl/Cargo.toml b/onnx-opl/Cargo.toml index a610ab8def..9ce022bb07 100644 --- a/onnx-opl/Cargo.toml +++ b/onnx-opl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-onnx-opl" -version = "0.19.11-pre" +version = "0.19.12" authors = ["Mathieu Poumeyrol "] license = "MIT/Apache-2.0" description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -20,7 +20,7 @@ log.workspace = true rand.workspace = true rand_distr.workspace = true rustfft.workspace = true -tract-nnef = { version = "=0.19.11-pre", path = "../nnef" } +tract-nnef = { version = "=0.19.12", path = "../nnef" } [dev-dependencies] env_logger.workspace = true diff --git a/onnx/Cargo.toml b/onnx/Cargo.toml index cf4b4833b7..ca452ada75 100644 --- a/onnx/Cargo.toml +++ b/onnx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-onnx" -version = "0.19.11-pre" +version = "0.19.12" authors = ["Mathieu Poumeyrol "] license = "MIT/Apache-2.0" description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -26,9 +26,9 @@ memmap2.workspace = true num-integer.workspace = true prost.workspace = true smallvec.workspace = true -tract-nnef = { version = "=0.19.11-pre", path = "../nnef" } -tract-hir = { version = "=0.19.11-pre", path = "../hir" } -tract-onnx-opl = { version = "=0.19.11-pre", path = "../onnx-opl" } +tract-nnef = { version = "=0.19.12", path = "../nnef" } +tract-hir = { version = "=0.19.12", path = "../hir" } +tract-onnx-opl = { version = "=0.19.12", path = "../onnx-opl" } [dev-dependencies] env_logger.workspace = true diff --git a/pulse-opl/Cargo.toml b/pulse-opl/Cargo.toml index d0a2e11bd3..fe92c9fe17 100644 --- a/pulse-opl/Cargo.toml +++ b/pulse-opl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-pulse-opl" -version = "0.19.11-pre" +version = "0.19.12" license = "MIT/Apache-2.0" authors = ["Mathieu Poumeyrol "] description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -16,4 +16,4 @@ maintenance = { status = "actively-developed" } [dependencies] downcast-rs.workspace = true lazy_static.workspace = true -tract-nnef = { version = "=0.19.11-pre", path = "../nnef" } +tract-nnef = { version = "=0.19.12", path = "../nnef" } diff --git a/pulse/Cargo.toml b/pulse/Cargo.toml index 779a1d9b69..99f3641814 100644 --- a/pulse/Cargo.toml +++ b/pulse/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-pulse" -version = "0.19.11-pre" +version = "0.19.12" 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.19.11-pre", path = "../pulse-opl" } +tract-pulse-opl = { version = "=0.19.12", path = "../pulse-opl" } diff --git a/tensorflow/Cargo.toml b/tensorflow/Cargo.toml index 2da41f8feb..bcce637c20 100644 --- a/tensorflow/Cargo.toml +++ b/tensorflow/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-tensorflow" -version = "0.19.11-pre" +version = "0.19.12" authors = ["Mathieu Poumeyrol "] license = "MIT/Apache-2.0" description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -24,8 +24,8 @@ memmap2.workspace = true prost.workspace = true prost-types.workspace = true tensorflow = { workspace = true, optional = true } -tract-hir = { version = "=0.19.11-pre", path = "../hir" } -tract-pulse = { version = "=0.19.11-pre", path = "../pulse" } +tract-hir = { version = "=0.19.12", path = "../hir" } +tract-pulse = { version = "=0.19.12", path = "../pulse" } # [build-dependencies] # protobuf-src = "1.0.5+3.19.3"