From 08af03ba4c88d6856eee42ee14b8faef3013cb8d Mon Sep 17 00:00:00 2001 From: Miles Johnson Date: Thu, 15 Feb 2024 11:43:30 -0800 Subject: [PATCH] chore: Release --- Cargo.lock | 8 ++++---- nextgen/config/Cargo.toml | 2 +- nextgen/pdk-api/Cargo.toml | 4 ++-- nextgen/pdk-test-utils/Cargo.toml | 4 ++-- nextgen/pdk/Cargo.toml | 4 ++-- nextgen/plugin/Cargo.toml | 2 +- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 75a4f4a65cc..6d2a94e2aad 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3211,7 +3211,7 @@ dependencies = [ [[package]] name = "moon_config" -version = "0.0.2" +version = "0.0.3" dependencies = [ "httpmock", "miette", @@ -3518,7 +3518,7 @@ dependencies = [ [[package]] name = "moon_pdk" -version = "0.0.2" +version = "0.0.3" dependencies = [ "clap", "extism-pdk", @@ -3529,7 +3529,7 @@ dependencies = [ [[package]] name = "moon_pdk_api" -version = "0.0.2" +version = "0.0.3" dependencies = [ "moon_common", "moon_config", @@ -3540,7 +3540,7 @@ dependencies = [ [[package]] name = "moon_pdk_test_utils" -version = "0.0.2" +version = "0.0.3" dependencies = [ "extism", "moon_pdk_api", diff --git a/nextgen/config/Cargo.toml b/nextgen/config/Cargo.toml index f92778fa4b7..cbb323e8609 100644 --- a/nextgen/config/Cargo.toml +++ b/nextgen/config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "moon_config" -version = "0.0.2" +version = "0.0.3" edition = "2021" license = "MIT" description = "Core workspace, project, and moon configuration." diff --git a/nextgen/pdk-api/Cargo.toml b/nextgen/pdk-api/Cargo.toml index 2c5fd40179e..fc5e429d89b 100644 --- a/nextgen/pdk-api/Cargo.toml +++ b/nextgen/pdk-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "moon_pdk_api" -version = "0.0.2" +version = "0.0.3" edition = "2021" license = "MIT" description = "Core APIs for creating moon WASM plugins." @@ -9,7 +9,7 @@ repository = "https://github.com/moonrepo/moon" [dependencies] moon_common = { version = "0.0.2", path = "../common" } -moon_config = { version = "0.0.2", path = "../config" } +moon_config = { version = "0.0.3", path = "../config" } rustc-hash = { workspace = true } serde = { workspace = true } warpgate_api = { workspace = true } diff --git a/nextgen/pdk-test-utils/Cargo.toml b/nextgen/pdk-test-utils/Cargo.toml index a0fe7d8a4b9..6b5a02ebe4a 100644 --- a/nextgen/pdk-test-utils/Cargo.toml +++ b/nextgen/pdk-test-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "moon_pdk_test_utils" -version = "0.0.2" +version = "0.0.3" edition = "2021" license = "MIT" description = "Utilities for testing moon WASM plugins." @@ -8,7 +8,7 @@ homepage = "https://moonrepo.dev/moon" repository = "https://github.com/moonrepo/moon" [dependencies] -moon_pdk_api = { version = "0.0.2", path = "../pdk-api" } +moon_pdk_api = { version = "0.0.3", path = "../pdk-api" } warpgate = { workspace = true } extism = { workspace = true } serde = { workspace = true } diff --git a/nextgen/pdk/Cargo.toml b/nextgen/pdk/Cargo.toml index 9eb83911bae..10e051956ec 100644 --- a/nextgen/pdk/Cargo.toml +++ b/nextgen/pdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "moon_pdk" -version = "0.0.2" +version = "0.0.3" edition = "2021" license = "MIT" description = "A plugin development kit for creating moon WASM plugins." @@ -8,7 +8,7 @@ homepage = "https://moonrepo.dev/moon" repository = "https://github.com/moonrepo/moon" [dependencies] -moon_pdk_api = { version = "0.0.2", path = "../pdk-api" } +moon_pdk_api = { version = "0.0.3", path = "../pdk-api" } clap = { workspace = true, features = ["derive"] } extism-pdk = { workspace = true } serde = { workspace = true } diff --git a/nextgen/plugin/Cargo.toml b/nextgen/plugin/Cargo.toml index f8828e4f696..1750216c8e7 100644 --- a/nextgen/plugin/Cargo.toml +++ b/nextgen/plugin/Cargo.toml @@ -10,7 +10,7 @@ publish = false [dependencies] moon_env = { path = "../env" } -moon_pdk_api = { version = "0.0.2", path = "../pdk-api" } +moon_pdk_api = { version = "0.0.3", path = "../pdk-api" } convert_case = "0.6.0" dashmap = "5.5.3" miette = { workspace = true }