Skip to content

Commit

Permalink
release 0.17.3
Browse files Browse the repository at this point in the history
  • Loading branch information
kali committed Jul 25, 2022
1 parent 645d6c2 commit 49b4927
Show file tree
Hide file tree
Showing 13 changed files with 38 additions and 35 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Unreleased

# 0.17.3 - 2022-07-25
* [License] Allowing https://spdx.org/licenses/Unicode-DFS-2016.html (no tldr yet, but pretty similar to BSD-2)
* [Breaking] CLI --json option reports costs as strings instead of numbers (in order to allow symbolic values).
* Sigmoid/Tanh f32 reimpl, plus new f16 impl.

# 0.17.1 - 2022-07-11
* Sanitiser=address in the CI. Fixed a couple of overflow/memleaks. (Nothing looked too awful.)
Expand Down
18 changes: 9 additions & 9 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract"
version = "0.17.3-pre"
version = "0.17.3"
authors = [ "Romain Liautaud <romain.liautaud@snips.ai>", "Mathieu Poumeyrol <kali@zoy.org>"]
license = "MIT/Apache-2.0"
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand Down Expand Up @@ -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.3-pre", path = "../core" }
tract-hir = { version = "0.17.3-pre", path = "../hir" }
tract-nnef = { version = "0.17.3-pre", path = "../nnef" }
tract-pulse-opl = { optional = true, version = "0.17.3-pre", path = "../pulse-opl" }
tract-pulse = { optional = true, version = "0.17.3-pre", path = "../pulse" }
tract-kaldi = { optional = true, version = "0.17.3-pre", path = "../kaldi" }
tract-onnx = { optional = true, version = "0.17.3-pre", path = "../onnx" }
tract-tensorflow = { optional = true, version = "0.17.3-pre", path = "../tensorflow" }
tract-core = "=0.17.3"
tract-hir = "=0.17.3"
tract-nnef = "=0.17.3"
tract-pulse-opl = { optional = true, version = "=0.17.3" }
tract-pulse = { optional = true, version = "=0.17.3" }
tract-kaldi = { optional = true, version = "=0.17.3" }
tract-onnx = { optional = true, version = "=0.17.3" }
tract-tensorflow = { optional = true, version = "=0.17.3" }

[features]
default = ["kaldi", "onnx", "tf", "pulse", "pulse-opl"]
Expand Down
6 changes: 3 additions & 3 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract-core"
version = "0.17.3-pre"
version = "0.17.3"
license = "MIT/Apache-2.0"
authors = ["Mathieu Poumeyrol <kali@zoy.org>"]
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand All @@ -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.3-pre", path = "../data" }
tract-linalg = { version = "0.17.3-pre", path = "../linalg" }
tract-data = "=0.17.3"
tract-linalg = { version = "=0.17.3" }

[features]
default = [ ]
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.17.3-pre"
version = "0.17.3"
license = "MIT/Apache-2.0"
authors = ["Mathieu Poumeyrol <kali@zoy.org>"]
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand Down
4 changes: 2 additions & 2 deletions hir/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract-hir"
version = "0.17.3-pre"
version = "0.17.3"
license = "MIT/Apache-2.0"
authors = ["Mathieu Poumeyrol <kali@zoy.org>"]
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand All @@ -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.3-pre", path = "../core" }
tract-core = { version = "=0.17.3" }

[dev-dependencies]
env_logger = "0.9.0"
6 changes: 3 additions & 3 deletions kaldi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract-kaldi"
version = "0.17.3-pre"
version = "0.17.3"
authors = [
"Mathieu Poumeyrol <kali@zoy.org>",
"Theodore Bluche <theodore.bluche@snips.ai>"
Expand All @@ -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.3-pre", path = "../hir" }
tract-pulse = { version = "0.17.3-pre", path = "../pulse" }
tract-hir = { version = "=0.17.3" }
tract-pulse = { version = "=0.17.3" }
4 changes: 2 additions & 2 deletions linalg/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract-linalg"
version = "0.17.3-pre"
version = "0.17.3"
license = "MIT/Apache-2.0"
authors = ["Mathieu Poumeyrol <kali@zoy.org>"]
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand All @@ -22,7 +22,7 @@ lazy_static = "1.4.0"
libc = "0.2.100"
log = "0.4.14"
num-traits = "0.2.14"
tract-data = { version = "0.17.3-pre", path = "../data" }
tract-data = { version = "=0.17.3" }
paste = "1.0.5"
scan_fmt = "0.2.6"

Expand Down
4 changes: 2 additions & 2 deletions nnef/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract-nnef"
version = "0.17.3-pre"
version = "0.17.3"
authors = ["Mathieu Poumeyrol <kali@zoy.org>"]
license = "MIT/Apache-2.0"
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand All @@ -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.3-pre", path = "../core" }
tract-core = { version = "=0.17.3" }
walkdir = "2.3.2"

[features]
Expand Down
4 changes: 2 additions & 2 deletions 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.17.3-pre"
version = "0.17.3"
authors = ["Mathieu Poumeyrol <kali@zoy.org>"]
license = "MIT/Apache-2.0"
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand All @@ -14,5 +14,5 @@ edition = "2018"
maintenance = { status = "actively-developed" }

[dependencies]
tract-nnef = { version = "0.17.3-pre", path = "../nnef" }
tract-nnef = { version = "=0.17.3" }
educe = "0.4.18"
8 changes: 4 additions & 4 deletions onnx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract-onnx"
version = "0.17.3-pre"
version = "0.17.3"
authors = ["Mathieu Poumeyrol <kali@zoy.org>"]
license = "MIT/Apache-2.0"
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand All @@ -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.3-pre", path = "../hir" }
tract-nnef = { version = "0.17.3-pre", path = "../nnef" }
tract-onnx-opl = { version = "0.17.3-pre", path = "../onnx-opl" }
tract-hir = "=0.17.3"
tract-nnef = "=0.17.3"
tract-onnx-opl = { version = "=0.17.3" }

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
mapr = "0.8.0"
Expand Down
4 changes: 2 additions & 2 deletions 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.17.3-pre"
version = "0.17.3"
license = "MIT/Apache-2.0"
authors = ["Mathieu Poumeyrol <kali@zoy.org>"]
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand All @@ -16,4 +16,4 @@ maintenance = { status = "actively-developed" }
[dependencies]
downcast-rs = "1.2.0"
lazy_static = "1.4.0"
tract-nnef = { version = "0.17.3-pre", path = "../nnef" }
tract-nnef = { version = "=0.17.3" }
4 changes: 2 additions & 2 deletions pulse/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract-pulse"
version = "0.17.3-pre"
version = "0.17.3"
license = "MIT/Apache-2.0"
authors = ["Mathieu Poumeyrol <kali@zoy.org>"]
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand All @@ -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.3-pre", path = "../pulse-opl" }
tract-pulse-opl = { version = "=0.17.3" }
6 changes: 3 additions & 3 deletions tensorflow/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract-tensorflow"
version = "0.17.3-pre"
version = "0.17.3"
authors = ["Mathieu Poumeyrol <kali@zoy.org>"]
license = "MIT/Apache-2.0"
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand All @@ -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.3-pre", path = "../hir" }
tract-pulse = { version = "0.17.3-pre", path = "../pulse" }
tract-hir = { version = "=0.17.3" }
tract-pulse = { version = "=0.17.3" }

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
mapr = "0.8.0"
Expand Down

0 comments on commit 49b4927

Please sign in to comment.