Skip to content

Commit

Permalink
chore: bump to version 0.3.0
Browse files Browse the repository at this point in the history
Previously 0.2.5 was published, but cargo (in deviance from Semver) considers that compatible with v0.2.4. To prevent issues due to breaking public API from v0.2.4, v0.2.5 is yanked and re-published as v0.3.0 instead.
  • Loading branch information
pixelspark committed Jul 31, 2022
1 parent 382d635 commit fa954aa
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions wonnx-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wonnx-cli"
version = "0.2.6"
version = "0.3.0"
edition = "2021"
repository = "https://github.com/webonnx/wonnx.git"
homepage = "https://github.com/webonnx/wonnx"
Expand Down Expand Up @@ -28,8 +28,8 @@ structopt = { version = "0.3.26", features = [ "paw" ] }
thiserror = "1.0.31"
tract-onnx = { version = "0.16.7", optional = true }
wgpu = "0.13.1"
wonnx = { version = "0.2.5" }
wonnx-preprocessing = { version = "0.2.5" }
wonnx = { version = "0.3.0" }
wonnx-preprocessing = { version = "0.3.0" }
human_bytes = "0.3.1"

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions wonnx-preprocessing/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wonnx-preprocessing"
version = "0.2.6"
version = "0.3.0"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Preprocessing utility crate for WONNX. WONNX is an ONNX runtime based on wgpu aimed at being a universal GPU runtime, written in Rust."
Expand All @@ -17,7 +17,7 @@ thiserror = "1.0.31"
tokenizers = "0.11.3"
tract-onnx = { version = "^0.17.0", optional = true }
wgpu = "0.13.1"
wonnx = { version = "0.2.5" }
wonnx = { version = "0.3.0" }
serde_json = "^1.0"

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions wonnx-py/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wonnx-py"
version = "0.2.6"
version = "0.3.0"
edition = "2018"
authors = ["haixuanTao <tao.xavier@outlook.com>", "Tommy van der Vorst <tommy@pixelspark.nl>"]
license = "MIT OR Apache-2.0"
Expand All @@ -11,7 +11,7 @@ homepage = "https://github.com/webonnx/wonnx"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
wonnx = { version = "0.2.5" }
wonnx = { version = "0.3.0" }
protobuf = { version = "2.27.1", features = ["with-bytes"] }
pyo3 = "0.16.5"
pollster = "0.2.5"
Expand Down
4 changes: 2 additions & 2 deletions wonnx-wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wonnx-wasm"
version = "0.2.6"
version = "0.3.0"
authors = ["haixuanTao <tao.xavier@outlook.com>", "Tommy van der Vorst <tommy@pixelspark.nl>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -25,7 +25,7 @@ crate-type = ["cdylib"]
lto = true

[dependencies]
wonnx = { version = "0.2.5" }
wonnx = { version = "0.3.0" }
log = "0.4.17"
console_log = "0.2.0"
console_error_panic_hook = "0.1.7"
Expand Down
2 changes: 1 addition & 1 deletion wonnx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wonnx"
version = "0.2.6"
version = "0.3.0"
authors = ["haixuanTao <tao.xavier@outlook.com>", "Tommy van der Vorst <tommy@pixelspark.nl>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down

0 comments on commit fa954aa

Please sign in to comment.