From 69cc2457fcfa24eb6449d693b7b7a4570e0608d8 Mon Sep 17 00:00:00 2001 From: Mathieu Poumeyrol Date: Thu, 6 Oct 2022 13:47:10 +0200 Subject: [PATCH] release 0.18.1 --- 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 | 4 ++-- onnx/Cargo.toml | 8 ++++---- pulse-opl/Cargo.toml | 4 ++-- pulse/Cargo.toml | 4 ++-- tensorflow/Cargo.toml | 6 +++--- 12 files changed, 35 insertions(+), 35 deletions(-) diff --git a/cli/Cargo.toml b/cli/Cargo.toml index bbbeac9dfb..44a64403d9 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract" -version = "0.18.1-pre" +version = "0.18.1" 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.18.1-pre", path = "../core" } -tract-hir = { version = "0.18.1-pre", path = "../hir" } -tract-nnef = { version = "0.18.1-pre", path = "../nnef" } -tract-pulse-opl = { optional = true, version = "0.18.1-pre", path = "../pulse-opl" } -tract-pulse = { optional = true, version = "0.18.1-pre", path = "../pulse" } -tract-kaldi = { optional = true, version = "0.18.1-pre", path = "../kaldi" } -tract-onnx = { optional = true, version = "0.18.1-pre", path = "../onnx" } -tract-tensorflow = { optional = true, version = "0.18.1-pre", path = "../tensorflow" } +tract-core = { version = "=0.18.1" } +tract-hir = { version = "=0.18.1" } +tract-nnef = { version = "=0.18.1" } +tract-pulse-opl = { optional = true, version = "=0.18.1" } +tract-pulse = { optional = true, version = "=0.18.1" } +tract-kaldi = { optional = true, version = "=0.18.1" } +tract-onnx = { optional = true, version = "=0.18.1" } +tract-tensorflow = { optional = true, version = "=0.18.1" } [features] default = ["kaldi", "onnx", "tf", "pulse", "pulse-opl"] diff --git a/core/Cargo.toml b/core/Cargo.toml index 95b0218560..5e9ed33394 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-core" -version = "0.18.1-pre" +version = "0.18.1" 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.18.1-pre", path = "../data" } -tract-linalg = { version = "0.18.1-pre", path = "../linalg" } +tract-data = "=0.18.1" +tract-linalg = { version = "=0.18.1" } [features] default = [ ] diff --git a/data/Cargo.toml b/data/Cargo.toml index 9ffd1b1030..e8e1f5a0b1 100644 --- a/data/Cargo.toml +++ b/data/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-data" -version = "0.18.1-pre" +version = "0.18.1" 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 0c1da0ae04..de58497e38 100644 --- a/hir/Cargo.toml +++ b/hir/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-hir" -version = "0.18.1-pre" +version = "0.18.1" 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.18.1-pre", path = "../core" } +tract-core = { version = "=0.18.1" } [dev-dependencies] env_logger = "0.9.0" diff --git a/kaldi/Cargo.toml b/kaldi/Cargo.toml index 2ade6aa9ea..828204f050 100644 --- a/kaldi/Cargo.toml +++ b/kaldi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-kaldi" -version = "0.18.1-pre" +version = "0.18.1" 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.18.1-pre", path = "../hir" } -tract-pulse = { version = "0.18.1-pre", path = "../pulse" } +tract-hir = { version = "=0.18.1" } +tract-pulse = { version = "=0.18.1" } diff --git a/linalg/Cargo.toml b/linalg/Cargo.toml index f194313501..24dc26fc39 100644 --- a/linalg/Cargo.toml +++ b/linalg/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-linalg" -version = "0.18.1-pre" +version = "0.18.1" license = "MIT/Apache-2.0" authors = ["Mathieu Poumeyrol "] description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -20,7 +20,7 @@ dyn-clone = "1.0.4" lazy_static = "1.4.0" log = "0.4.14" num-traits = "0.2.14" -tract-data = { version = "0.18.1-pre", path = "../data" } +tract-data = { version = "=0.18.1" } paste = "1.0.5" scan_fmt = "0.2.6" diff --git a/nnef/Cargo.toml b/nnef/Cargo.toml index 5ec2cd6653..dd2a3be076 100644 --- a/nnef/Cargo.toml +++ b/nnef/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-nnef" -version = "0.18.1-pre" +version = "0.18.1" 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.18.1-pre", path = "../core" } +tract-core = { version = "=0.18.1" } walkdir = "2.3.2" [features] diff --git a/onnx-opl/Cargo.toml b/onnx-opl/Cargo.toml index 4e774e5c09..f11b87ac56 100644 --- a/onnx-opl/Cargo.toml +++ b/onnx-opl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-onnx-opl" -version = "0.18.1-pre" +version = "0.18.1" authors = ["Mathieu Poumeyrol "] license = "MIT/Apache-2.0" description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -14,7 +14,7 @@ edition = "2018" maintenance = { status = "actively-developed" } [dependencies] -tract-nnef = { version = "0.18.1-pre", path = "../nnef" } +tract-nnef = { version = "=0.18.1" } educe = "0.4.18" log = "0.4.14" rand = { version = "0.8.4", features = ["small_rng"] } diff --git a/onnx/Cargo.toml b/onnx/Cargo.toml index 78b6892b6b..b3395f15d1 100644 --- a/onnx/Cargo.toml +++ b/onnx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-onnx" -version = "0.18.1-pre" +version = "0.18.1" authors = ["Mathieu Poumeyrol "] license = "MIT/Apache-2.0" description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -24,9 +24,9 @@ memmap2 = "0.5" num-integer = "0.1.44" prost = "0.11.0" smallvec = "1.6.1" -tract-hir = { version = "0.18.1-pre", path = "../hir" } -tract-nnef = { version = "0.18.1-pre", path = "../nnef" } -tract-onnx-opl = { version = "0.18.1-pre", path = "../onnx-opl" } +tract-hir = { version = "=0.18.1" } +tract-nnef = { version = "=0.18.1" } +tract-onnx-opl = { version = "=0.18.1" } [dev-dependencies] env_logger = "0.9.0" diff --git a/pulse-opl/Cargo.toml b/pulse-opl/Cargo.toml index d9605f3ec4..61ce7e3cb5 100644 --- a/pulse-opl/Cargo.toml +++ b/pulse-opl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-pulse-opl" -version = "0.18.1-pre" +version = "0.18.1" 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.18.1-pre", path = "../nnef" } +tract-nnef = { version = "=0.18.1" } diff --git a/pulse/Cargo.toml b/pulse/Cargo.toml index 40d912cc10..dbe6b8da39 100644 --- a/pulse/Cargo.toml +++ b/pulse/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-pulse" -version = "0.18.1-pre" +version = "0.18.1" 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.18.1-pre", path = "../pulse-opl" } +tract-pulse-opl = { version = "=0.18.1" } diff --git a/tensorflow/Cargo.toml b/tensorflow/Cargo.toml index f596c1a5f6..88f8209e6e 100644 --- a/tensorflow/Cargo.toml +++ b/tensorflow/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-tensorflow" -version = "0.18.1-pre" +version = "0.18.1" authors = ["Mathieu Poumeyrol "] license = "MIT/Apache-2.0" description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -23,8 +23,8 @@ memmap2 = "0.5" prost = "0.11.0" prost-types = "0.11.0" tensorflow = { version = "0.17.0", optional = true } -tract-hir = { version = "0.18.1-pre", path = "../hir" } -tract-pulse = { version = "0.18.1-pre", path = "../pulse" } +tract-hir = { version = "=0.18.1" } +tract-pulse = { version = "=0.18.1" } # [build-dependencies] # protobuf-src = "1.0.5+3.19.3"