Skip to content

Commit

Permalink
Chore/bump to 0 2 1 (#17)
Browse files Browse the repository at this point in the history
* docs: include readme

* fix: version in dev

* bump: version 0.2.1
  • Loading branch information
geofmureithi authored Aug 31, 2023
1 parent d28bafa commit bb95bc4
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 16 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "plugy"
description = "plugy empowers you to construct agnostic dynamic plugin systems using Rust and WASM"
version = "0.2.0"
version = "0.2.1"
edition = "2021"
categories = ["wasm"]
keywords = ["plugin", "wasi", "inventory", "wasm", "plugy"]
Expand All @@ -12,9 +12,9 @@ repository = "https://github.com/geofmureithi/plugy"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
plugy-core = { path = "./crates/plugy-core", version = "0.2.0", optional = true }
plugy-macros = { path = "./crates/plugy-macros", version = "0.2.0", optional = true }
plugy-runtime = { path = "./crates/plugy-runtime", version = "0.2.0", optional = true }
plugy-core = { path = "./crates/plugy-core", version = "0.2.1", optional = true }
plugy-macros = { path = "./crates/plugy-macros", version = "0.2.1", optional = true }
plugy-runtime = { path = "./crates/plugy-runtime", version = "0.2.1", optional = true }

[features]
default = ["core", "macros"]
Expand Down
2 changes: 1 addition & 1 deletion crates/plugy-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "plugy-core"
description = "plugy empowers you to construct agnostic dynamic plugin systems using Rust and WASM"
version = "0.2.0"
version = "0.2.1"
edition = "2021"
readme = "../../README.md"
categories = ["wasm"]
Expand Down
2 changes: 1 addition & 1 deletion crates/plugy-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "plugy-macros"
description = "plugy empowers you to construct agnostic dynamic plugin systems using Rust and WASM"
version = "0.2.0"
version = "0.2.1"
edition = "2021"
readme = "../../README.md"
categories = ["wasm"]
Expand Down
4 changes: 2 additions & 2 deletions crates/plugy-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "plugy-runtime"
description = "plugy empowers you to construct agnostic dynamic plugin systems using Rust and WASM"
version = "0.2.0"
version = "0.2.1"
edition = "2021"
readme = "../../README.md"
categories = ["wasm"]
Expand All @@ -15,7 +15,7 @@ repository = "https://github.com/geofmureithi/plugy"
anyhow = "1"
bincode = "1.3.3"
dashmap = "5.4.0"
plugy-core = { path = "../plugy-core", version = "0.2.0" }
plugy-core = { path = "../plugy-core", version = "0.2.1" }
serde = { version = "1", features = ["derive"] }
wasmtime = "10.0.1"
async-lock = "2.7.0"
Expand Down
2 changes: 1 addition & 1 deletion examples/foo-plugin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "foo-plugin"
version = "0.2.0"
version = "0.2.1"
edition = "2021"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion examples/runner/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "runner"
version = "0.2.0"
version = "0.2.1"
edition = "2021"

[lib]
Expand Down

0 comments on commit bb95bc4

Please sign in to comment.