From 81b11c3b158ba868c7d9f87dded1b3aaf023a670 Mon Sep 17 00:00:00 2001 From: Mathieu Poumeyrol Date: Thu, 11 Aug 2022 13:53:47 +0200 Subject: [PATCH] release 0.17.4 --- cli/Cargo.toml | 18 +++++++++--------- core/Cargo.toml | 6 +++--- data/Cargo.toml | 2 +- hir/Cargo.toml | 4 ++-- kaldi/Cargo.toml | 6 +++--- linalg/Cargo.toml | 4 ++-- nnef/Cargo.toml | 4 ++-- onnx-opl/Cargo.toml | 6 +++--- onnx/Cargo.toml | 8 ++++---- pulse-opl/Cargo.toml | 4 ++-- pulse/Cargo.toml | 4 ++-- tensorflow/Cargo.toml | 6 +++--- 12 files changed, 36 insertions(+), 36 deletions(-) diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 9afac49e5a..f7579ce69f 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract" -version = "0.17.4-pre" +version = "0.17.4" authors = [ "Romain Liautaud ", "Mathieu Poumeyrol "] license = "MIT/Apache-2.0" description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -37,14 +37,14 @@ scan_fmt = "0.2.6" serde = "1.0.127" serde_json = "1.0.66" serde_derive = "1.0.127" -tract-core = { version = "0.17.4-pre", path = "../core" } -tract-hir = { version = "0.17.4-pre", path = "../hir" } -tract-nnef = { version = "0.17.4-pre", path = "../nnef" } -tract-pulse-opl = { optional = true, version = "0.17.4-pre", path = "../pulse-opl" } -tract-pulse = { optional = true, version = "0.17.4-pre", path = "../pulse" } -tract-kaldi = { optional = true, version = "0.17.4-pre", path = "../kaldi" } -tract-onnx = { optional = true, version = "0.17.4-pre", path = "../onnx" } -tract-tensorflow = { optional = true, version = "0.17.4-pre", path = "../tensorflow" } +tract-core = "=0.17.4" +tract-hir = "=0.17.4" +tract-nnef = "=0.17.4" +tract-pulse-opl = { optional = true, version = "=0.17.4" } +tract-pulse = { optional = true, version = "=0.17.4" } +tract-kaldi = { optional = true, version = "=0.17.4" } +tract-onnx = { optional = true, version = "=0.17.4" } +tract-tensorflow = { optional = true, version = "=0.17.4" } [features] default = ["kaldi", "onnx", "tf", "pulse", "pulse-opl"] diff --git a/core/Cargo.toml b/core/Cargo.toml index b96361d05a..63933c9bf7 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-core" -version = "0.17.4-pre" +version = "0.17.4" license = "MIT/Apache-2.0" authors = ["Mathieu Poumeyrol "] description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -27,8 +27,8 @@ num-integer = "0.1.44" num-traits = "0.2.14" dyn-clone = "1.0.4" smallvec = "1.6.1" -tract-data = { version = "0.17.4-pre", path = "../data" } -tract-linalg = { version = "0.17.4-pre", path = "../linalg" } +tract-data = "=0.17.4" +tract-linalg = { version = "=0.17.4" } [features] default = [ ] diff --git a/data/Cargo.toml b/data/Cargo.toml index 2c0f6c0204..69c933f059 100644 --- a/data/Cargo.toml +++ b/data/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-data" -version = "0.17.4-pre" +version = "0.17.4" license = "MIT/Apache-2.0" authors = ["Mathieu Poumeyrol "] description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" diff --git a/hir/Cargo.toml b/hir/Cargo.toml index 772f8417e4..b19c10f377 100644 --- a/hir/Cargo.toml +++ b/hir/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-hir" -version = "0.17.4-pre" +version = "0.17.4" 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 = "0.5.9" educe = "0.4.18" log = "0.4.14" -tract-core = { version = "0.17.4-pre", path = "../core" } +tract-core = "=0.17.4" [dev-dependencies] env_logger = "0.9.0" diff --git a/kaldi/Cargo.toml b/kaldi/Cargo.toml index 946876848c..258bdf8c2b 100644 --- a/kaldi/Cargo.toml +++ b/kaldi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-kaldi" -version = "0.17.4-pre" +version = "0.17.4" authors = [ "Mathieu Poumeyrol ", "Theodore Bluche " @@ -23,5 +23,5 @@ lazy_static = "1.4.0" log = "0.4.14" maplit = "1.0.2" nom = "7.0.0" -tract-hir = { version = "0.17.4-pre", path = "../hir" } -tract-pulse = { version = "0.17.4-pre", path = "../pulse" } +tract-hir = { version = "=0.17.4" } +tract-pulse = { version = "=0.17.4" } diff --git a/linalg/Cargo.toml b/linalg/Cargo.toml index e51bdffb90..f3caa9c9b7 100644 --- a/linalg/Cargo.toml +++ b/linalg/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-linalg" -version = "0.17.4-pre" +version = "0.17.4" license = "MIT/Apache-2.0" authors = ["Mathieu Poumeyrol "] description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -21,7 +21,7 @@ lazy_static = "1.4.0" libc = "0.2.100" log = "0.4.14" num-traits = "0.2.14" -tract-data = { version = "0.17.4-pre", path = "../data" } +tract-data = { version = "=0.17.4" } paste = "1.0.5" scan_fmt = "0.2.6" diff --git a/nnef/Cargo.toml b/nnef/Cargo.toml index 532e45bf82..794451e39f 100644 --- a/nnef/Cargo.toml +++ b/nnef/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-nnef" -version = "0.17.4-pre" +version = "0.17.4" authors = ["Mathieu Poumeyrol "] license = "MIT/Apache-2.0" description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -19,7 +19,7 @@ log = "0.4.14" nom = "7.0.0" tar = "0.4.37" flate2 = { version = "1.0.20", optional = true } -tract-core = { version = "0.17.4-pre", path = "../core" } +tract-core = { version = "=0.17.4" } walkdir = "2.3.2" [features] diff --git a/onnx-opl/Cargo.toml b/onnx-opl/Cargo.toml index 5da5d332c0..9bc5d830de 100644 --- a/onnx-opl/Cargo.toml +++ b/onnx-opl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-onnx-opl" -version = "0.17.4-pre" +version = "0.17.4" authors = ["Mathieu Poumeyrol "] license = "MIT/Apache-2.0" description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -14,11 +14,11 @@ edition = "2018" maintenance = { status = "actively-developed" } [dependencies] -tract-nnef = { version = "0.17.4-pre", path = "../nnef" } +tract-nnef = { version = "=0.17.4" } educe = "0.4.18" rand = { version = "0.8.4", features = ["small_rng"] } getrandom = "0.2" [features] default = [] -getrandom-js = ["getrandom/js"] \ No newline at end of file +getrandom-js = ["getrandom/js"] diff --git a/onnx/Cargo.toml b/onnx/Cargo.toml index 05cfbf360f..cc4edc0397 100644 --- a/onnx/Cargo.toml +++ b/onnx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-onnx" -version = "0.17.4-pre" +version = "0.17.4" authors = ["Mathieu Poumeyrol "] license = "MIT/Apache-2.0" description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -22,9 +22,9 @@ log = "0.4.14" num-integer = "0.1.44" prost = "0.10.0" smallvec = "1.6.1" -tract-hir = { version = "0.17.4-pre", path = "../hir" } -tract-nnef = { version = "0.17.4-pre", path = "../nnef" } -tract-onnx-opl = { version = "0.17.4-pre", path = "../onnx-opl" } +tract-hir = "=0.17.4" +tract-nnef = "=0.17.4" +tract-onnx-opl = { version = "=0.17.4" } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] mapr = "0.8.0" diff --git a/pulse-opl/Cargo.toml b/pulse-opl/Cargo.toml index 0922e72143..a1420ff0bd 100644 --- a/pulse-opl/Cargo.toml +++ b/pulse-opl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-pulse-opl" -version = "0.17.4-pre" +version = "0.17.4" 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 = "1.2.0" lazy_static = "1.4.0" -tract-nnef = { version = "0.17.4-pre", path = "../nnef" } +tract-nnef = { version = "=0.17.4" } diff --git a/pulse/Cargo.toml b/pulse/Cargo.toml index f5803cd32a..2e69e1768e 100644 --- a/pulse/Cargo.toml +++ b/pulse/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-pulse" -version = "0.17.4-pre" +version = "0.17.4" 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 = "1.2.0" lazy_static = "1.4.0" -tract-pulse-opl = { version = "0.17.4-pre", path = "../pulse-opl" } +tract-pulse-opl = { version = "=0.17.4" } diff --git a/tensorflow/Cargo.toml b/tensorflow/Cargo.toml index 8422f560ea..3217734107 100644 --- a/tensorflow/Cargo.toml +++ b/tensorflow/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-tensorflow" -version = "0.17.4-pre" +version = "0.17.4" authors = ["Mathieu Poumeyrol "] license = "MIT/Apache-2.0" description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -21,8 +21,8 @@ log = "0.4.14" prost = "0.10.0" prost-types = "0.10.0" tensorflow = { version = "0.17.0", optional = true } -tract-hir = { version = "0.17.4-pre", path = "../hir" } -tract-pulse = { version = "0.17.4-pre", path = "../pulse" } +tract-hir = { version = "=0.17.4" } +tract-pulse = { version = "=0.17.4" } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] mapr = "0.8.0"