Skip to content

Commit 1be667a

Browse files
authored
Release v0.6.0 (#82)
1 parent 510f50b commit 1be667a

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/openvino-finder/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "openvino-finder"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
description = "A helper crate for finding OpenVINO installations on a system."
55
license = "Apache-2.0"
66
readme = "README.md"

crates/openvino-sys/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "openvino-sys"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
license = "Apache-2.0"
55
description = "Low-level bindings for OpenVINO (use the `openvino` crate for easier-to-use bindings)."
66
readme = "README.md"
@@ -27,10 +27,10 @@ links = "inference_engine_c_api"
2727
[dependencies]
2828
once_cell = { version = "1.18", optional = true }
2929
libloading = { version = "0.8", optional = true }
30-
openvino-finder = { version = "0.5.0", path = "../openvino-finder" }
30+
openvino-finder = { version = "0.6.0", path = "../openvino-finder" }
3131

3232
[build-dependencies]
33-
openvino-finder = { version = "0.5.0", path = "../openvino-finder" }
33+
openvino-finder = { version = "0.6.0", path = "../openvino-finder" }
3434
env_logger = "0.10"
3535

3636
[features]

crates/openvino/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "openvino"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
license = "Apache-2.0"
55
description = "High-level bindings for OpenVINO."
66
readme = "README.md"
@@ -13,8 +13,8 @@ edition = "2018"
1313
exclude = ["/tests"]
1414

1515
[dependencies]
16-
openvino-sys = { path = "../openvino-sys", version = "0.5.0" }
17-
openvino-finder = { path = "../openvino-finder", version = "0.5.0" }
16+
openvino-sys = { path = "../openvino-sys", version = "0.6.0" }
17+
openvino-finder = { path = "../openvino-finder", version = "0.6.0" }
1818
thiserror = "1.0"
1919

2020
[dev-dependencies]

0 commit comments

Comments
 (0)