From 5ede805691cf191aca314cb87dba06421d108758 Mon Sep 17 00:00:00 2001 From: Geoffrey Mureithi <95377562+geofmureithi@users.noreply.github.com> Date: Thu, 14 Dec 2023 21:05:55 +0300 Subject: [PATCH] bump: to version 0.3.1 (#41) --- Cargo.lock | 12 ++++++------ Cargo.toml | 8 ++++---- crates/plugy-core/Cargo.toml | 2 +- crates/plugy-macros/Cargo.toml | 2 +- crates/plugy-runtime/Cargo.toml | 4 ++-- examples/foo-plugin/Cargo.toml | 2 +- examples/runner/Cargo.toml | 2 +- 7 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5b5ce08..2ba7dd6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -571,7 +571,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "foo-plugin" -version = "0.3.0" +version = "0.3.1" dependencies = [ "plugy", "runner", @@ -1205,7 +1205,7 @@ checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" [[package]] name = "plugy" -version = "0.3.0" +version = "0.3.1" dependencies = [ "plugy-core", "plugy-macros", @@ -1214,7 +1214,7 @@ dependencies = [ [[package]] name = "plugy-core" -version = "0.3.0" +version = "0.3.1" dependencies = [ "anyhow", "bincode", @@ -1223,7 +1223,7 @@ dependencies = [ [[package]] name = "plugy-macros" -version = "0.3.0" +version = "0.3.1" dependencies = [ "convert_case", "darling", @@ -1234,7 +1234,7 @@ dependencies = [ [[package]] name = "plugy-runtime" -version = "0.3.0" +version = "0.3.1" dependencies = [ "anyhow", "async-lock", @@ -1413,7 +1413,7 @@ dependencies = [ [[package]] name = "runner" -version = "0.3.0" +version = "0.3.1" dependencies = [ "anyhow", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index c2681b6..75779b6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "plugy" description = "plugy empowers you to construct agnostic dynamic plugin systems using Rust and WASM" -version = "0.3.0" +version = "0.3.1" edition = "2021" categories = ["wasm"] keywords = ["plugin", "wasi", "inventory", "wasm", "plugy"] @@ -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.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 } +plugy-core = { path = "./crates/plugy-core", version = "0.3.1", optional = true } +plugy-macros = { path = "./crates/plugy-macros", version = "0.3.1", optional = true } +plugy-runtime = { path = "./crates/plugy-runtime", version = "0.3.1", optional = true } [features] default = ["core", "macros"] diff --git a/crates/plugy-core/Cargo.toml b/crates/plugy-core/Cargo.toml index b31b6ee..99b9f05 100644 --- a/crates/plugy-core/Cargo.toml +++ b/crates/plugy-core/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "plugy-core" description = "plugy empowers you to construct agnostic dynamic plugin systems using Rust and WASM" -version = "0.3.0" +version = "0.3.1" edition = "2021" readme = "../../README.md" categories = ["wasm"] diff --git a/crates/plugy-macros/Cargo.toml b/crates/plugy-macros/Cargo.toml index 7435d48..e60fa1f 100644 --- a/crates/plugy-macros/Cargo.toml +++ b/crates/plugy-macros/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "plugy-macros" description = "plugy empowers you to construct agnostic dynamic plugin systems using Rust and WASM" -version = "0.3.0" +version = "0.3.1" edition = "2021" readme = "../../README.md" categories = ["wasm"] diff --git a/crates/plugy-runtime/Cargo.toml b/crates/plugy-runtime/Cargo.toml index 6533697..7f8edd2 100644 --- a/crates/plugy-runtime/Cargo.toml +++ b/crates/plugy-runtime/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "plugy-runtime" description = "plugy empowers you to construct agnostic dynamic plugin systems using Rust and WASM" -version = "0.3.0" +version = "0.3.1" edition = "2021" readme = "../../README.md" categories = ["wasm"] @@ -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.3.0" } +plugy-core = { path = "../plugy-core", version = "0.3.1" } serde = { version = "1", features = ["derive"] } wasmtime = "15.0.1" async-lock = "3.2.0" diff --git a/examples/foo-plugin/Cargo.toml b/examples/foo-plugin/Cargo.toml index 2590b58..99753e0 100644 --- a/examples/foo-plugin/Cargo.toml +++ b/examples/foo-plugin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "foo-plugin" -version = "0.3.0" +version = "0.3.1" edition = "2021" [lib] diff --git a/examples/runner/Cargo.toml b/examples/runner/Cargo.toml index 1cd37d6..60a7ecd 100644 --- a/examples/runner/Cargo.toml +++ b/examples/runner/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "runner" -version = "0.3.0" +version = "0.3.1" edition = "2021" [lib]