Skip to content

Commit

Permalink
release 0.21.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieupoumeyrolsonos committed Jan 16, 2024
1 parent 2128ec3 commit 47e83db
Show file tree
Hide file tree
Showing 34 changed files with 66 additions and 66 deletions.
2 changes: 1 addition & 1 deletion api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract-api"
version = "0.20.23-pre"
version = "0.21.0"
license = "MIT OR Apache-2.0"
authors = ["Mathieu Poumeyrol <kali@zoy.org>"]
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand Down
6 changes: 3 additions & 3 deletions api/ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract-ffi"
version = "0.20.23-pre"
version = "0.21.0"
license = "MIT OR Apache-2.0"
authors = ["Mathieu Poumeyrol <kali@zoy.org>"]
description = "Tiny, no-nonsense, self contained, neural network inference"
Expand All @@ -23,5 +23,5 @@ anyhow.workspace = true
flate2.workspace = true
serde.workspace = true
serde_json.workspace = true
tract-api = { path = ".." , version = "=0.20.23-pre" }
tract-rs = { path = "../rs" , version = "=0.20.23-pre" }
tract-api = { path = ".." , version = "=0.21.0" }
tract-rs = { path = "../rs" , version = "=0.21.0" }
6 changes: 3 additions & 3 deletions api/proxy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract-proxy"
version = "0.20.23-pre"
version = "0.21.0"
license = "MIT OR Apache-2.0"
authors = ["Mathieu Poumeyrol <kali@zoy.org>"]
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand All @@ -17,8 +17,8 @@ anyhow.workspace = true
boow.workspace = true
home.workspace = true
ndarray.workspace = true
tract-api = { path = ".." , version = "=0.20.23-pre" }
tract-proxy-sys = { path = "sys", version = "=0.20.23-pre" }
tract-api = { path = ".." , version = "=0.21.0" }
tract-proxy-sys = { path = "sys", version = "=0.21.0" }

[dev-dependencies]
reqwest.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions api/proxy/sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract-proxy-sys"
version = "0.20.23-pre"
version = "0.21.0"
license = "MIT OR Apache-2.0"
authors = ["Mathieu Poumeyrol <kali@zoy.org>"]
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand All @@ -14,7 +14,7 @@ include = [ "Cargo.toml", "src/**/*.rs", "LICENSE*", "build.rs", "tract.h" ]


[dependencies]
tract-ffi = { path = "../../ffi" , version = "=0.20.23-pre" }
tract-ffi = { path = "../../ffi" , version = "=0.21.0" }

[build-dependencies]
bindgen.workspace = true
Expand Down
14 changes: 7 additions & 7 deletions api/rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract-rs"
version = "0.20.23-pre"
version = "0.21.0"
license = "MIT OR Apache-2.0"
authors = ["Mathieu Poumeyrol <kali@zoy.org>"]
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand All @@ -18,13 +18,13 @@ boow.workspace = true
flate2.workspace = true
half.workspace = true
ndarray.workspace = true
tract-api = { path = ".." , version = "=0.20.23-pre" }
tract-api = { path = ".." , version = "=0.21.0" }
tract-nnef = { path = "../../nnef/" , version = "=0.21.0" }
tract-onnx-opl = { path = "../../onnx-opl/" , version = "=0.20.23-pre" }
tract-onnx = { path = "../../onnx/" , version = "=0.20.23-pre" }
tract-extra = { path = "../../extra/" , version = "=0.20.23-pre" }
tract-pulse = { path = "../../pulse/" , version = "=0.20.23-pre" }
tract-libcli = { path = "../../libcli" , version = "=0.20.23-pre" }
tract-onnx-opl = { path = "../../onnx-opl/" , version = "=0.21.0" }
tract-onnx = { path = "../../onnx/" , version = "=0.21.0" }
tract-extra = { path = "../../extra/" , version = "=0.21.0" }
tract-pulse = { path = "../../pulse/" , version = "=0.21.0" }
tract-libcli = { path = "../../libcli" , version = "=0.21.0" }
serde_json.workspace = true

[dev-dependencies]
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.20.23-pre"
version = "0.21.0"
authors = [ "Romain Liautaud <romain.liautaud@snips.ai>", "Mathieu Poumeyrol <kali@zoy.org>"]
license = "MIT OR Apache-2.0"
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand Down Expand Up @@ -35,15 +35,15 @@ scan_fmt.workspace = true
serde.workspace = true
serde_json.workspace = true
tract-core = { version = "=0.21.0", path = "../core" }
tract-hir = { version = "=0.20.23-pre", path = "../hir" }
tract-hir = { version = "=0.21.0", path = "../hir" }
tract-nnef = { version = "=0.21.0", path = "../nnef" }
tract-libcli = { version = "=0.20.23-pre", path = "../libcli" }
tract-extra = { optional = true, version = "=0.20.23-pre", path = "../extra" }
tract-pulse-opl = { optional = true, version = "=0.20.23-pre", path = "../pulse-opl" }
tract-pulse = { optional = true, version = "=0.20.23-pre", path = "../pulse" }
tract-onnx = { optional = true, version = "=0.20.23-pre", path = "../onnx" }
tract-tensorflow = { optional = true, version = "=0.20.23-pre", path = "../tensorflow" }
tract-tflite = { optional = true, version = "=0.20.23-pre", path = "../tflite" }
tract-libcli = { version = "=0.21.0", path = "../libcli" }
tract-extra = { optional = true, version = "=0.21.0", path = "../extra" }
tract-pulse-opl = { optional = true, version = "=0.21.0", path = "../pulse-opl" }
tract-pulse = { optional = true, version = "=0.21.0", path = "../pulse" }
tract-onnx = { optional = true, version = "=0.21.0", path = "../onnx" }
tract-tensorflow = { optional = true, version = "=0.21.0", path = "../tensorflow" }
tract-tflite = { optional = true, version = "=0.21.0", path = "../tflite" }

[features]
default = ["onnx", "tf", "pulse", "pulse-opl", "tflite", "extra"]
Expand Down
2 changes: 1 addition & 1 deletion examples/keras-tract-tf2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ edition = "2021"
[dependencies]

tract-core = { path = "../../core", version = "=0.21.0" }
tract-onnx = { path = "../../onnx", version = "=0.20.23-pre" }
tract-onnx = { path = "../../onnx", version = "=0.21.0" }
ndarray-npy.workspace = true

2 changes: 1 addition & 1 deletion examples/onnx-mobilenet-v2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ edition = "2021"

[dependencies]
image.workspace = true
tract-onnx = { path = "../../onnx", version = "=0.20.23-pre" }
tract-onnx = { path = "../../onnx", version = "=0.21.0" }
2 changes: 1 addition & 1 deletion examples/pytorch-albert-v2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ ndarray.workspace = true
tokenizers.workspace = true
clap_builder = { version = "4.4" }
clap_lex = { version = "0.6" }
tract-onnx = { path = "../../onnx", version = "=0.20.23-pre" }
tract-onnx = { path = "../../onnx", version = "=0.21.0" }
2 changes: 1 addition & 1 deletion examples/pytorch-resnet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ edition = "2021"

[dependencies]
image.workspace = true
tract-onnx = { path = "../../onnx", version = "=0.20.23-pre" }
tract-onnx = { path = "../../onnx", version = "=0.21.0" }
2 changes: 1 addition & 1 deletion examples/tensorflow-mobilenet-v2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ edition = "2021"

[dependencies]
image.workspace = true
tract-tensorflow = { path = "../../tensorflow", version = "=0.20.23-pre" }
tract-tensorflow = { path = "../../tensorflow", version = "=0.21.0" }
2 changes: 1 addition & 1 deletion examples/tflite-mobilenet-v3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ edition = "2021"

[dependencies]
image.workspace = true
tract-tflite = { path = "../../tflite", version = "=0.20.23-pre" }
tract-tflite = { path = "../../tflite", version = "=0.21.0" }
4 changes: 2 additions & 2 deletions extra/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract-extra"
version = "0.20.23-pre"
version = "0.21.0"
license = "MIT OR Apache-2.0"
authors = ["Mathieu Poumeyrol <kali@zoy.org>"]
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand All @@ -16,7 +16,7 @@ maintenance = { status = "actively-developed" }

[dependencies]
tract-nnef = { version = "=0.21.0", path = "../nnef" }
tract-pulse = { version = "=0.20.23-pre", path = "../pulse" }
tract-pulse = { version = "=0.21.0", path = "../pulse" }

[dev-dependencies]
criterion.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion harness/core-proptest-pulse/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"

[dependencies]
tract-core = { path = "../../core", version = "=0.21.0" }
tract-pulse = { path = "../../pulse", version = "=0.20.23-pre" }
tract-pulse = { path = "../../pulse", version = "=0.21.0" }

[dev-dependencies]
log.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions harness/lstm-proptest-onnx-vs-tf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ edition = "2021"

[dependencies]
proptest.workspace = true
tract-tensorflow = { path = "../../tensorflow", version = "=0.20.23-pre" }
tract-onnx = { path = "../../onnx", version = "=0.20.23-pre" }
tract-tensorflow = { path = "../../tensorflow", version = "=0.21.0" }
tract-onnx = { path = "../../onnx", version = "=0.21.0" }
2 changes: 1 addition & 1 deletion harness/onnx-proptest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ onnxruntime = { path = "../../../../github/onnxruntime-rs/onnxruntime" }
onnx-pb = "0.1.4"
anyhow = "1.0.56"
prost = "0.11.0"
tract-onnx = { path = "../../onnx" , version = "=0.20.23-pre" }
tract-onnx = { path = "../../onnx" , version = "=0.21.0" }
proptest = "1.0.0"
2 changes: 1 addition & 1 deletion harness/tf-inceptionv3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0"

[dependencies]
image.workspace = true
tract-tensorflow = { path = "../../tensorflow", version = "=0.20.23-pre" }
tract-tensorflow = { path = "../../tensorflow", version = "=0.21.0" }

[features]
conform = [ "tract-tensorflow/conform" ]
Expand Down
2 changes: 1 addition & 1 deletion harness/tf-mobilenet-v2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0"

[dependencies]
image.workspace = true
tract-tensorflow = { path = "../../tensorflow", version = "=0.20.23-pre" }
tract-tensorflow = { path = "../../tensorflow", version = "=0.21.0" }

[dev-dependencies]
dinghy-test.workspace = true
2 changes: 1 addition & 1 deletion harness/tf-moz-deepspeech/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT OR Apache-2.0"

[dependencies]
log.workspace = true
tract-tensorflow = { path = "../../tensorflow", version = "=0.20.23-pre" }
tract-tensorflow = { path = "../../tensorflow", version = "=0.21.0" }

[dev-dependencies]
env_logger.workspace = true
2 changes: 1 addition & 1 deletion harness/tfl-mobilenet-v2-q/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"

[dependencies]
image.workspace = true
tract-tflite = { path = "../../tflite", version = "=0.20.23-pre" }
tract-tflite = { path = "../../tflite", version = "=0.21.0" }

[dev-dependencies]
dinghy-test.workspace = true
2 changes: 1 addition & 1 deletion hir/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract-hir"
version = "0.20.23-pre"
version = "0.21.0"
license = "MIT OR Apache-2.0"
authors = ["Mathieu Poumeyrol <kali@zoy.org>"]
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand Down
8 changes: 4 additions & 4 deletions libcli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract-libcli"
version = "0.20.23-pre"
version = "0.21.0"
license = "MIT OR Apache-2.0"
authors = ["Mathieu Poumeyrol <kali@zoy.org>"]
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand All @@ -24,9 +24,9 @@ rand.workspace = true
serde.workspace = true
serde_json.workspace = true
tract-core = { version = "=0.21.0", path = "../core" }
tract-hir = { version = "=0.20.23-pre", path = "../hir" }
tract-onnx = { version = "=0.20.23-pre", path = "../onnx", optional = true }
tract-tflite = { version = "=0.20.23-pre", path = "../tflite", optional = true }
tract-hir = { version = "=0.21.0", path = "../hir" }
tract-onnx = { version = "=0.21.0", path = "../onnx", optional = true }
tract-tflite = { version = "=0.21.0", path = "../tflite", optional = true }

[features]
# hir = ["tract-hir"]
Expand Down
2 changes: 1 addition & 1 deletion 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.20.23-pre"
version = "0.21.0"
authors = ["Mathieu Poumeyrol <kali@zoy.org>"]
license = "MIT OR Apache-2.0"
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand Down
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.20.23-pre"
version = "0.21.0"
authors = ["Mathieu Poumeyrol <kali@zoy.org>"]
license = "MIT OR Apache-2.0"
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand All @@ -26,8 +26,8 @@ num-integer.workspace = true
prost.workspace = true
smallvec.workspace = true
tract-nnef = { version = "=0.21.0", path = "../nnef" }
tract-hir = { version = "=0.20.23-pre", path = "../hir" }
tract-onnx-opl = { version = "=0.20.23-pre", path = "../onnx-opl" }
tract-hir = { version = "=0.21.0", path = "../hir" }
tract-onnx-opl = { version = "=0.21.0", path = "../onnx-opl" }

[dev-dependencies]
env_logger.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion 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.20.23-pre"
version = "0.21.0"
license = "MIT OR 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 pulse/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract-pulse"
version = "0.20.23-pre"
version = "0.21.0"
license = "MIT OR Apache-2.0"
authors = ["Mathieu Poumeyrol <kali@zoy.org>"]
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand All @@ -17,5 +17,5 @@ maintenance = { status = "actively-developed" }
downcast-rs.workspace = true
lazy_static.workspace = true
log.workspace = true
tract-pulse-opl = { version = "=0.20.23-pre", path = "../pulse-opl" }
tract-pulse-opl = { version = "=0.21.0", path = "../pulse-opl" }

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.20.23-pre"
version = "0.21.0"
authors = ["Mathieu Poumeyrol <kali@zoy.org>"]
license = "MIT OR Apache-2.0"
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand All @@ -23,8 +23,8 @@ memmap2.workspace = true
prost.workspace = true
prost-types.workspace = true
tensorflow = { workspace = true, optional = true }
tract-hir = { version = "=0.20.23-pre", path = "../hir" }
tract-pulse = { version = "=0.20.23-pre", path = "../pulse" }
tract-hir = { version = "=0.21.0", path = "../hir" }
tract-pulse = { version = "=0.21.0", path = "../pulse" }

# [build-dependencies]
# protobuf-src = "1.0.5+3.19.3"
Expand Down
4 changes: 2 additions & 2 deletions test-rt/suite-onnx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ log.workspace = true
prost.workspace = true
infra = { path = "../infra" }
tract-core = { path = "../../core" , version = "=0.21.0" }
tract-onnx = { path = "../../onnx" , version = "=0.20.23-pre" }
tract-hir = { path = "../../hir" , version = "=0.20.23-pre" }
tract-onnx = { path = "../../onnx" , version = "=0.21.0" }
tract-hir = { path = "../../hir" , version = "=0.21.0" }

[features]
onnx_1_4_1 = []
Expand Down
4 changes: 2 additions & 2 deletions test-rt/test-f16/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ infra = { path = "../infra" }
tract-core = { path = "../../core" , version = "=0.21.0" }
suite-onnx = { path = "../suite-onnx" }
suite-unit = { path = "../suite-unit" }
tract-onnx-opl = { path = "../../onnx-opl", version = "=0.20.23-pre" }
tract-onnx-opl = { path = "../../onnx-opl", version = "=0.21.0" }

[dev-dependencies]
home.workspace = true
Expand All @@ -25,7 +25,7 @@ log.workspace = true
tflitec.workspace = true
tract-core = { path = "../../core", version = "=0.21.0" }
tract-nnef = { path = "../../nnef", version = "=0.21.0" }
tract-onnx-opl = { path = "../../onnx-opl", version = "=0.20.23-pre" }
tract-onnx-opl = { path = "../../onnx-opl", version = "=0.21.0" }
infra = { path = "../infra" }
suite-onnx = { path = "../suite-onnx" }
suite-unit = { path = "../suite-unit" }
2 changes: 1 addition & 1 deletion test-rt/test-nnef-cycle/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ log.workspace = true
suite-onnx = { path = "../suite-onnx" }
suite-unit = { path = "../suite-unit" }
tract-core = { path = "../../core", version = "=0.21.0" }
tract-onnx-opl = { path = "../../onnx-opl", version = "=0.20.23-pre" }
tract-onnx-opl = { path = "../../onnx-opl", version = "=0.21.0" }
tract-nnef = { path = "../../nnef", version = "=0.21.0" }
2 changes: 1 addition & 1 deletion test-rt/test-onnx-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ edition = "2021"
lazy_static.workspace = true
tract-core = { path = "../../core", version = "=0.21.0" }
tract-nnef = { path = "../../nnef", version = "=0.21.0" }
tract-onnx = { path = "../../onnx", version = "=0.20.23-pre" }
tract-onnx = { path = "../../onnx", version = "=0.21.0" }
suite-onnx = { path = "../suite-onnx" }

[features]
Expand Down
2 changes: 1 addition & 1 deletion test-rt/test-onnx-core/debug-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ members = []

[dependencies]
protobuf = "*"
tract-onnx = { path = "../../../onnx" , version = "=0.20.23-pre" }
tract-onnx = { path = "../../../onnx" , version = "=0.21.0" }
4 changes: 2 additions & 2 deletions test-rt/test-tflite/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ lazy_static.workspace = true
log.workspace = true
tflitec.workspace = true
tract-core = { path = "../../core", version = "=0.21.0" }
tract-tflite = { path = "../../tflite", version = "=0.20.23-pre" }
tract-onnx-opl = { path = "../../onnx-opl", version = "=0.20.23-pre" }
tract-tflite = { path = "../../tflite", version = "=0.21.0" }
tract-onnx-opl = { path = "../../onnx-opl", version = "=0.21.0" }
infra = { path = "../infra" }
suite-onnx = { path = "../suite-onnx" }
suite-unit = { path = "../suite-unit" }
Loading

0 comments on commit 47e83db

Please sign in to comment.