diff --git a/Cargo.lock b/Cargo.lock index 6d2a94e2aad..cada37593f8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3197,7 +3197,7 @@ dependencies = [ [[package]] name = "moon_common" -version = "0.0.2" +version = "0.0.3" dependencies = [ "miette", "once_cell", @@ -3211,7 +3211,7 @@ dependencies = [ [[package]] name = "moon_config" -version = "0.0.3" +version = "0.0.4" dependencies = [ "httpmock", "miette", @@ -3518,7 +3518,7 @@ dependencies = [ [[package]] name = "moon_pdk" -version = "0.0.3" +version = "0.0.4" dependencies = [ "clap", "extism-pdk", @@ -3529,7 +3529,7 @@ dependencies = [ [[package]] name = "moon_pdk_api" -version = "0.0.3" +version = "0.0.4" dependencies = [ "moon_common", "moon_config", @@ -3540,7 +3540,7 @@ dependencies = [ [[package]] name = "moon_pdk_test_utils" -version = "0.0.3" +version = "0.0.4" dependencies = [ "extism", "moon_pdk_api", @@ -3884,7 +3884,7 @@ dependencies = [ [[package]] name = "moon_target" -version = "0.0.1" +version = "0.0.2" dependencies = [ "miette", "moon_common", diff --git a/nextgen/common/Cargo.toml b/nextgen/common/Cargo.toml index d7a1cf8cca8..1a06892cb01 100644 --- a/nextgen/common/Cargo.toml +++ b/nextgen/common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "moon_common" -version = "0.0.2" +version = "0.0.3" edition = "2021" license = "MIT" description = "Common utilities." diff --git a/nextgen/config/Cargo.toml b/nextgen/config/Cargo.toml index cbb323e8609..1210d2c7bea 100644 --- a/nextgen/config/Cargo.toml +++ b/nextgen/config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "moon_config" -version = "0.0.3" +version = "0.0.4" edition = "2021" license = "MIT" description = "Core workspace, project, and moon configuration." @@ -19,8 +19,8 @@ name = "moon_config" path = "src/lib.rs" [dependencies] -moon_common = { version = "0.0.2", path = "../common" } -moon_target = { version = "0.0.1", path = "../target" } +moon_common = { version = "0.0.3", path = "../common" } +moon_target = { version = "0.0.2", path = "../target" } miette = { workspace = true } once_cell = { workspace = true } regex = { workspace = true } diff --git a/nextgen/pdk-api/Cargo.toml b/nextgen/pdk-api/Cargo.toml index fc5e429d89b..ca47d72f009 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.3" +version = "0.0.4" edition = "2021" license = "MIT" description = "Core APIs for creating moon WASM plugins." @@ -8,8 +8,8 @@ homepage = "https://moonrepo.dev/moon" repository = "https://github.com/moonrepo/moon" [dependencies] -moon_common = { version = "0.0.2", path = "../common" } -moon_config = { version = "0.0.3", path = "../config" } +moon_common = { version = "0.0.3", path = "../common" } +moon_config = { version = "0.0.4", 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 6b5a02ebe4a..c9871b2f3f9 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.3" +version = "0.0.4" 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.3", path = "../pdk-api" } +moon_pdk_api = { version = "0.0.4", 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 10e051956ec..b550b12e378 100644 --- a/nextgen/pdk/Cargo.toml +++ b/nextgen/pdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "moon_pdk" -version = "0.0.3" +version = "0.0.4" 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.3", path = "../pdk-api" } +moon_pdk_api = { version = "0.0.4", 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 1750216c8e7..3f105feaece 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.3", path = "../pdk-api" } +moon_pdk_api = { version = "0.0.4", path = "../pdk-api" } convert_case = "0.6.0" dashmap = "5.5.3" miette = { workspace = true } diff --git a/nextgen/target/Cargo.toml b/nextgen/target/Cargo.toml index 8267f4eb39d..fd5730392d9 100644 --- a/nextgen/target/Cargo.toml +++ b/nextgen/target/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "moon_target" -version = "0.0.1" +version = "0.0.2" edition = "2021" license = "MIT" description = "Project + task target identifier." @@ -8,7 +8,7 @@ homepage = "https://moonrepo.dev/moon" repository = "https://github.com/moonrepo/moon" [dependencies] -moon_common = { version = "0.0.2", path = "../common" } +moon_common = { version = "0.0.3", path = "../common" } miette = { workspace = true } once_cell = { workspace = true } regex = { workspace = true }