Skip to content

Commit 5ede805

Browse files
authored
bump: to version 0.3.1 (#41)
1 parent 6d35eb2 commit 5ede805

File tree

7 files changed

+16
-16
lines changed

7 files changed

+16
-16
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "plugy"
33
description = "plugy empowers you to construct agnostic dynamic plugin systems using Rust and WASM"
4-
version = "0.3.0"
4+
version = "0.3.1"
55
edition = "2021"
66
categories = ["wasm"]
77
keywords = ["plugin", "wasi", "inventory", "wasm", "plugy"]
@@ -12,9 +12,9 @@ repository = "https://github.com/geofmureithi/plugy"
1212
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1313

1414
[dependencies]
15-
plugy-core = { path = "./crates/plugy-core", version = "0.3.0", optional = true }
16-
plugy-macros = { path = "./crates/plugy-macros", version = "0.3.0", optional = true }
17-
plugy-runtime = { path = "./crates/plugy-runtime", version = "0.3.0", optional = true }
15+
plugy-core = { path = "./crates/plugy-core", version = "0.3.1", optional = true }
16+
plugy-macros = { path = "./crates/plugy-macros", version = "0.3.1", optional = true }
17+
plugy-runtime = { path = "./crates/plugy-runtime", version = "0.3.1", optional = true }
1818

1919
[features]
2020
default = ["core", "macros"]

crates/plugy-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "plugy-core"
33
description = "plugy empowers you to construct agnostic dynamic plugin systems using Rust and WASM"
4-
version = "0.3.0"
4+
version = "0.3.1"
55
edition = "2021"
66
readme = "../../README.md"
77
categories = ["wasm"]

crates/plugy-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "plugy-macros"
33
description = "plugy empowers you to construct agnostic dynamic plugin systems using Rust and WASM"
4-
version = "0.3.0"
4+
version = "0.3.1"
55
edition = "2021"
66
readme = "../../README.md"
77
categories = ["wasm"]

crates/plugy-runtime/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "plugy-runtime"
33
description = "plugy empowers you to construct agnostic dynamic plugin systems using Rust and WASM"
4-
version = "0.3.0"
4+
version = "0.3.1"
55
edition = "2021"
66
readme = "../../README.md"
77
categories = ["wasm"]
@@ -15,7 +15,7 @@ repository = "https://github.com/geofmureithi/plugy"
1515
anyhow = "1"
1616
bincode = "1.3.3"
1717
dashmap = "5.5.3"
18-
plugy-core = { path = "../plugy-core", version = "0.3.0" }
18+
plugy-core = { path = "../plugy-core", version = "0.3.1" }
1919
serde = { version = "1", features = ["derive"] }
2020
wasmtime = "15.0.1"
2121
async-lock = "3.2.0"

examples/foo-plugin/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "foo-plugin"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
edition = "2021"
55

66
[lib]

examples/runner/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "runner"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
edition = "2021"
55

66
[lib]

0 commit comments

Comments
 (0)