diff --git a/Cargo.lock b/Cargo.lock index 2190d6aee..981488c84 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2396,7 +2396,7 @@ dependencies = [ [[package]] name = "proto_pdk" -version = "0.25.0" +version = "0.25.1" dependencies = [ "extism-pdk", "proto_pdk_api", @@ -2407,7 +2407,7 @@ dependencies = [ [[package]] name = "proto_pdk_api" -version = "0.24.0" +version = "0.24.1" dependencies = [ "proto_pdk_api", "rustc-hash 2.0.0", @@ -3902,7 +3902,7 @@ dependencies = [ [[package]] name = "warpgate_pdk" -version = "0.8.0" +version = "0.8.1" dependencies = [ "extism-pdk", "serde", diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index e22f863af..c705446cd 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -34,7 +34,7 @@ path = "src/main_shim.rs" [dependencies] proto_core = { version = "0.43.0", path = "../core", features = ["clap"] } proto_installer = { version = "0.7.1", path = "../installer" } -proto_pdk_api = { version = "0.24.0", path = "../pdk-api" } +proto_pdk_api = { version = "0.24.1", path = "../pdk-api" } proto_shim = { version = "0.5.0", path = "../shim" } system_env = { version = "0.6.1", path = "../system-env" } anyhow = { workspace = true } diff --git a/crates/codegen/Cargo.toml b/crates/codegen/Cargo.toml index a725df035..b7dc088d0 100644 --- a/crates/codegen/Cargo.toml +++ b/crates/codegen/Cargo.toml @@ -10,7 +10,7 @@ dist = false [dependencies] proto_core = { version = "0.43.0", path = "../core" } -proto_pdk_api = { version = "0.24.0", path = "../pdk-api", features = [ +proto_pdk_api = { version = "0.24.1", path = "../pdk-api", features = [ "schematic", ] } schematic = { workspace = true, features = [ diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index 410d90ca5..de1a5585e 100644 --- a/crates/core/Cargo.toml +++ b/crates/core/Cargo.toml @@ -8,7 +8,7 @@ homepage = "https://moonrepo.dev/proto" repository = "https://github.com/moonrepo/proto" [dependencies] -proto_pdk_api = { version = "0.24.0", path = "../pdk-api", features = [ +proto_pdk_api = { version = "0.24.1", path = "../pdk-api", features = [ "schematic", ] } proto_shim = { version = "0.5.0", path = "../shim" } diff --git a/crates/pdk-api/Cargo.toml b/crates/pdk-api/Cargo.toml index 7f7261404..fd9db6aca 100644 --- a/crates/pdk-api/Cargo.toml +++ b/crates/pdk-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "proto_pdk_api" -version = "0.24.0" +version = "0.24.1" edition = "2021" license = "MIT" description = "Core APIs for creating proto WASM plugins." diff --git a/crates/pdk-test-utils/Cargo.toml b/crates/pdk-test-utils/Cargo.toml index a51681722..72a285c28 100644 --- a/crates/pdk-test-utils/Cargo.toml +++ b/crates/pdk-test-utils/Cargo.toml @@ -9,7 +9,7 @@ repository = "https://github.com/moonrepo/proto" [dependencies] proto_core = { version = "0.43.0", path = "../core" } -proto_pdk_api = { version = "0.24.0", path = "../pdk-api" } +proto_pdk_api = { version = "0.24.1", path = "../pdk-api" } warpgate = { version = "0.19.0", path = "../warpgate" } serde = { workspace = true } serde_json = { workspace = true } diff --git a/crates/pdk/Cargo.toml b/crates/pdk/Cargo.toml index 094364f55..a79822aff 100644 --- a/crates/pdk/Cargo.toml +++ b/crates/pdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "proto_pdk" -version = "0.25.0" +version = "0.25.1" edition = "2021" license = "MIT" description = "A plugin development kit for creating proto WASM plugins." @@ -8,8 +8,8 @@ homepage = "https://moonrepo.dev/proto" repository = "https://github.com/moonrepo/proto" [dependencies] -proto_pdk_api = { version = "0.24.0", path = "../pdk-api" } -warpgate_pdk = { version = "0.8.0", path = "../warpgate-pdk" } +proto_pdk_api = { version = "0.24.1", path = "../pdk-api" } +warpgate_pdk = { version = "0.8.1", path = "../warpgate-pdk" } extism-pdk = { workspace = true } rustc-hash = { workspace = true } serde = { workspace = true } diff --git a/crates/warpgate-pdk/Cargo.toml b/crates/warpgate-pdk/Cargo.toml index a9e5c3550..a61862690 100644 --- a/crates/warpgate-pdk/Cargo.toml +++ b/crates/warpgate-pdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "warpgate_pdk" -version = "0.8.0" +version = "0.8.1" edition = "2021" license = "MIT" description = "Reusable WASM macros and functions for plugin developer kits."