Skip to content

Commit

Permalink
release 0.10.8
Browse files Browse the repository at this point in the history
  • Loading branch information
kali committed Aug 28, 2020
1 parent ad3fc2f commit 0bef942
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 21 deletions.
14 changes: 7 additions & 7 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract"
version = "0.10.8-pre"
version = "0.10.8"
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 @@ -30,12 +30,12 @@ py_literal = "0.2"
rand = "0.7"
regex = "1.3"
readings-probe = "0.1.1"
tract-core = { path = "../core" }
tract-hir = { path = "../hir" }
tract-kaldi = { optional = true, path = "../kaldi" }
tract-nnef = { optional = true, path = "../nnef" }
tract-onnx = { optional = true, path = "../onnx" }
tract-tensorflow = { optional = true, path = "../tensorflow" }
tract-core = "0.10.8"
tract-hir = "0.10.8"
tract-kaldi = { optional = true, version = "0.10.8" }
tract-nnef = { optional = true, version = "0.10.8" }
tract-onnx = { optional = true, version = "0.10.8" }
tract-tensorflow = { optional = true, version = "0.10.8" }
colorous = "1.0.2"
serde = "1.0.110"
serde_json = "1.0.53"
Expand Down
4 changes: 2 additions & 2 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract-core"
version = "0.10.8-pre"
version = "0.10.8"
license = "MIT/Apache-2.0"
authors = ["Mathieu Poumeyrol <kali@zoy.org>"]
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand Down Expand Up @@ -30,7 +30,7 @@ dyn-clone = "1"
serde = { "version" = "1.0", optional = true }
serde_derive = { "version" = "1.0", optional = true }
smallvec = "1"
tract-linalg = { path = "../linalg" }
tract-linalg = "0.10.8"

[features]
default = [ ]
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.10.8-pre"
version = "0.10.8"
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"
educe = "=0.4.11" # locked for rust 1.41.0
log = "0.4"
tract-core = { path = "../core" }
tract-core = "0.10.8"

[dev-dependencies]
env_logger = "0.7"
4 changes: 2 additions & 2 deletions kaldi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract-kaldi"
version = "0.10.8-pre"
version = "0.10.8"
authors = [
"Mathieu Poumeyrol <kali@zoy.org>",
"Theodore Bluche <theodore.bluche@snips.ai>"
Expand All @@ -23,4 +23,4 @@ lazy_static = "1"
log = "0.4"
maplit = "1"
nom = "5"
tract-hir = { path = "../hir" }
tract-hir = "0.10.8"
2 changes: 1 addition & 1 deletion linalg/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract-linalg"
version = "0.10.8-pre"
version = "0.10.8"
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 nnef/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract-nnef"
version = "0.10.8-pre"
version = "0.10.8"
authors = ["Mathieu Poumeyrol <kali@zoy.org>"]
license = "MIT/Apache-2.0"
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand All @@ -18,5 +18,5 @@ flate2 = "1"
log = "0.4"
nom = "5"
tar = "0.4"
tract-core = { path = "../core" }
tract-core = "0.10.8"
walkdir = "2"
6 changes: 3 additions & 3 deletions onnx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract-onnx"
version = "0.10.8-pre"
version = "0.10.8"
authors = ["Mathieu Poumeyrol <kali@zoy.org>"]
license = "MIT/Apache-2.0"
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand All @@ -22,8 +22,8 @@ log = "0.4"
num-integer = "0.1"
prost = "0.6"
smallvec = "1"
tract-hir = { path = "../hir" }
tract-nnef = { path = "../nnef" }
tract-hir = "0.10.8"
tract-nnef = "0.10.8"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
memmap = "0.7"
Expand Down
4 changes: 2 additions & 2 deletions tensorflow/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract-tensorflow"
version = "0.10.8-pre"
version = "0.10.8"
authors = ["Mathieu Poumeyrol <kali@zoy.org>"]
license = "MIT/Apache-2.0"
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand All @@ -22,7 +22,7 @@ prost = "0.6"
prost-types = "0.6"
tensorflow = { version = "0", optional = true }
error-chain = { version = "0.12", optional = true }
tract-hir = { path = "../hir" }
tract-hir = "0.10.8"

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

0 comments on commit 0bef942

Please sign in to comment.