Skip to content

Commit

Permalink
Chore 0.3.0 (#38)
Browse files Browse the repository at this point in the history
* fix: release with MIT OR Apache-2.0

* bump: to version 0.3
  • Loading branch information
geofmureithi authored Dec 3, 2023
1 parent 8b8aeda commit 0e106ad
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 20 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.1"
version = "0.3.0"
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.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 }
plugy-core = { path = "./crates/plugy-core", version = "0.3.0", optional = true }
plugy-macros = { path = "./crates/plugy-macros", version = "0.3.0", optional = true }
plugy-runtime = { path = "./crates/plugy-runtime", version = "0.3.0", optional = true }

[features]
default = ["core", "macros"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ Contributions to plugy are welcome! If you find a bug or want to propose a new f

License

This project is licensed under the GNU General Public License.
This project is licensed under the MIT OR Apache-2.0 License.

<!-- Badges -->

Expand Down
4 changes: 2 additions & 2 deletions crates/plugy-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "plugy-core"
description = "plugy empowers you to construct agnostic dynamic plugin systems using Rust and WASM"
version = "0.2.1"
version = "0.3.0"
edition = "2021"
readme = "../../README.md"
categories = ["wasm"]
keywords = ["plugin", "wasi", "inventory", "wasm", "plugy"]
license = "GPL-3.0-only"
license = "MIT OR Apache-2.0"
repository = "https://github.com/geofmureithi/plugy"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
4 changes: 2 additions & 2 deletions crates/plugy-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "plugy-macros"
description = "plugy empowers you to construct agnostic dynamic plugin systems using Rust and WASM"
version = "0.2.1"
version = "0.3.0"
edition = "2021"
readme = "../../README.md"
categories = ["wasm"]
keywords = ["plugin", "wasi", "inventory", "wasm", "plugy"]
license = "GPL-3.0-only"
license = "MIT OR Apache-2.0"
repository = "https://github.com/geofmureithi/plugy"

[lib]
Expand Down
6 changes: 3 additions & 3 deletions crates/plugy-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "plugy-runtime"
description = "plugy empowers you to construct agnostic dynamic plugin systems using Rust and WASM"
version = "0.2.1"
version = "0.3.0"
edition = "2021"
readme = "../../README.md"
categories = ["wasm"]
keywords = ["plugin", "wasi", "inventory", "wasm", "plugy"]
license = "GPL-3.0-only"
license = "MIT OR Apache-2.0"
repository = "https://github.com/geofmureithi/plugy"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand All @@ -15,7 +15,7 @@ repository = "https://github.com/geofmureithi/plugy"
anyhow = "1"
bincode = "1.3.3"
dashmap = "5.5.3"
plugy-core = { path = "../plugy-core", version = "0.2.1" }
plugy-core = { path = "../plugy-core", version = "0.3.0" }
serde = { version = "1", features = ["derive"] }
wasmtime = "15.0.1"
async-lock = "3.2.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.1"
version = "0.3.0"
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.1"
version = "0.3.0"
edition = "2021"

[lib]
Expand Down

0 comments on commit 0e106ad

Please sign in to comment.