Skip to content

Commit

Permalink
release 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kali committed Sep 17, 2020
1 parent 07c423c commit 0a45f88
Show file tree
Hide file tree
Showing 13 changed files with 34 additions and 34 deletions.
16 changes: 8 additions & 8 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract"
version = "0.10.11-pre"
version = "0.11.0"
authors = [ "Romain Liautaud <[email protected]>", "Mathieu Poumeyrol <[email protected]>"]
license = "MIT/Apache-2.0"
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand Down Expand Up @@ -35,13 +35,13 @@ regex = "1.3"
serde = "1.0.110"
serde_json = "1.0.53"
serde_derive = "1.0.110"
tract-core = { path = "../core" }
tract-hir = { path = "../hir" }
tract-nnef = { path = "../nnef" }
tract-pulse = { optional = true, path = "../pulse" }
tract-kaldi = { optional = true, path = "../kaldi" }
tract-onnx = { optional = true, path = "../onnx" }
tract-tensorflow = { optional = true, path = "../tensorflow" }
tract-core = "0.11.0"
tract-hir = "0.11.0"
tract-nnef = "0.11.0"
tract-pulse = { optional = true, version = "0.11.0" }
tract-kaldi = { optional = true, version = "0.11.0" }
tract-onnx = { optional = true, version = "0.11.0" }
tract-tensorflow = { optional = true, version = "0.11.0" }

[features]
default = ["kaldi", "onnx", "tf", "pulse"]
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.11-pre"
version = "0.11.0"
license = "MIT/Apache-2.0"
authors = ["Mathieu Poumeyrol <[email protected]>"]
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand Down Expand Up @@ -28,7 +28,7 @@ num-integer = "0.1"
num-traits = "0.2"
dyn-clone = "1"
smallvec = "1"
tract-linalg = { path = "../linalg" }
tract-linalg = "0.11.0"

[features]
default = [ ]
Expand Down
6 changes: 3 additions & 3 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.11-pre"
version = "0.11.0"
license = "MIT/Apache-2.0"
authors = ["Mathieu Poumeyrol <[email protected]>"]
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand All @@ -17,8 +17,8 @@ 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-pulse = { path = "../pulse" }
tract-core = "0.11.0"
tract-pulse = "0.11.0"

[dev-dependencies]
env_logger = "0.7"
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.10.11-pre"
version = "0.11.0"
authors = [
"Mathieu Poumeyrol <[email protected]>",
"Theodore Bluche <[email protected]>"
Expand All @@ -23,5 +23,5 @@ lazy_static = "1"
log = "0.4"
maplit = "1"
nom = "5"
tract-hir = { path = "../hir" }
tract-pulse = { path = "../pulse" }
tract-hir = "0.11.0"
tract-pulse = "0.11.0"
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.11-pre"
version = "0.11.0"
license = "MIT/Apache-2.0"
authors = ["Mathieu Poumeyrol <[email protected]>"]
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.11-pre"
version = "0.11.0"
authors = ["Mathieu Poumeyrol <[email protected]>"]
license = "MIT/Apache-2.0"
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand All @@ -17,5 +17,5 @@ maintenance = { status = "actively-developed" }
log = "0.4"
nom = "5"
tar = "0.4"
tract-core = { path = "../core" }
tract-core = "0.11.0"
walkdir = "2"
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.10.8-pre"
version = "0.11.0"
authors = ["Mathieu Poumeyrol <[email protected]>"]
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 = { path = "../nnef" }
tract-nnef = "0.11.0"
educe = "=0.4.11" # locked for rust 1.41.0
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.10.11-pre"
version = "0.11.0"
authors = ["Mathieu Poumeyrol <[email protected]>"]
license = "MIT/Apache-2.0"
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand All @@ -22,9 +22,9 @@ log = "0.4"
num-integer = "0.1"
prost = "0.6"
smallvec = "1"
tract-hir = { path = "../hir" }
tract-nnef = { path = "../nnef" }
tract-onnx-opl = { path = "../onnx-opl" }
tract-hir = "0.11.0"
tract-nnef = "0.11.0"
tract-onnx-opl = "0.11.0"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
memmap = "0.7"
Expand Down
2 changes: 1 addition & 1 deletion post-release.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh

VERSION=$1
CRATES="linalg core nnef hir tensorflow pulse-opl pulse onnx-opl onnx kaldi cli"
CRATES="linalg core nnef pulse-opl pulse hir tensorflow onnx-opl onnx kaldi cli"

if [ `uname` = "Darwin" ]
then
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.10.8-pre"
version = "0.11.0"
license = "MIT/Apache-2.0"
authors = ["Mathieu Poumeyrol <[email protected]>"]
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand All @@ -17,4 +17,4 @@ maintenance = { status = "actively-developed" }
downcast-rs = "1.0"
inventory = "0.1"
lazy_static = "1.4.0"
tract-nnef = { path = "../nnef" }
tract-nnef = "0.11.0"
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.10.8-pre"
version = "0.11.0"
license = "MIT/Apache-2.0"
authors = ["Mathieu Poumeyrol <[email protected]>"]
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand All @@ -17,4 +17,4 @@ maintenance = { status = "actively-developed" }
downcast-rs = "1.0"
inventory = "0.1"
lazy_static = "1.4.0"
tract-pulse-opl = { path = "../pulse-opl" }
tract-pulse-opl = "0.11.0"
2 changes: 1 addition & 1 deletion release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

CRATE=$1
VERSION=$2
CRATES="linalg core nnef hir tensorflow pulse-opl pulse onnx-opl onnx kaldi cli"
CRATES="linalg core nnef pulse-opl pulse hir tensorflow onnx-opl onnx kaldi cli"

if [ `uname` = "Darwin" ]
then
Expand Down
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.10.11-pre"
version = "0.11.0"
authors = ["Mathieu Poumeyrol <[email protected]>"]
license = "MIT/Apache-2.0"
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand All @@ -22,7 +22,8 @@ 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.11.0"
tract-pulse = "0.11.0"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
memmap = "0.7"
Expand All @@ -38,7 +39,6 @@ criterion = "0.3"
env_logger = "0.7"
proptest = "0.10"
rand = "0.7"
tract-pulse = { path = "../pulse" }

# [[bench]]
# name = "conv"
Expand Down

0 comments on commit 0a45f88

Please sign in to comment.