Skip to content

Commit a90cd63

Browse files
authored
Release v0.4.0 (#41)
* Release v0.4.0 * fix: remove too-long Cargo keyword
1 parent 3ed84bf commit a90cd63

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.3.3"
3+
version = "0.4.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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "openvino-sys"
3-
version = "0.3.3"
3+
version = "0.4.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"
77
authors = ["OpenVINO Project Developers"]
88
repository = "https://github.com/intel/openvino-rs"
99
documentation = "https://docs.rs/openvino-sys"
10-
keywords = ["external-ffi-bindings", "openvino", "machine-learning", "ml", "neural-network"]
10+
keywords = ["openvino", "machine-learning", "ml", "neural-network"]
1111
categories = ["external-ffi-bindings", "science"]
1212
edition = "2018"
1313
include = [
@@ -27,10 +27,10 @@ links = "inference_engine_c_api"
2727
[dependencies]
2828
lazy_static = {version = "1.4", optional = true }
2929
libloading = {version = "0.7", optional = true }
30-
openvino-finder = {version = "0.3.3", path = "../openvino-finder" }
30+
openvino-finder = {version = "0.4.0", path = "../openvino-finder" }
3131

3232
[build-dependencies]
33-
openvino-finder = {version = "0.3.3", path = "../openvino-finder" }
33+
openvino-finder = {version = "0.4.0", path = "../openvino-finder" }
3434
pretty_env_logger = "0.4"
3535

3636
[features]

crates/openvino/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "openvino"
3-
version = "0.3.3"
3+
version = "0.4.0"
44
license = "Apache-2.0"
55
description = "High-level bindings for OpenVINO."
66
readme = "README.md"
@@ -15,7 +15,7 @@ exclude = [
1515
]
1616

1717
[dependencies]
18-
openvino-sys = { path = "../openvino-sys", version = "0.3.3" }
18+
openvino-sys = { path = "../openvino-sys", version = "0.4.0" }
1919
thiserror = "1.0.20"
2020

2121
[dev-dependencies]

0 commit comments

Comments
 (0)