From 8eef12153007d8cc098c09a91ec74ec941efae46 Mon Sep 17 00:00:00 2001 From: Miles Johnson Date: Wed, 17 Jul 2024 15:50:50 -0700 Subject: [PATCH] chore: Release --- CHANGELOG.md | 2 +- Cargo.lock | 12 ++++++------ crates/cli/Cargo.toml | 4 ++-- crates/codegen/Cargo.toml | 2 +- crates/core/Cargo.toml | 4 ++-- crates/pdk-api/Cargo.toml | 2 +- crates/pdk-test-utils/Cargo.toml | 6 +++--- crates/pdk/Cargo.toml | 2 +- crates/warpgate-api/Cargo.toml | 2 +- crates/warpgate-pdk/Cargo.toml | 4 ++-- crates/warpgate/Cargo.toml | 4 ++-- version | 2 +- 12 files changed, 23 insertions(+), 23 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f4cf5654..daf58c84e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,7 @@ - [Rust](https://github.com/moonrepo/rust-plugin/blob/master/CHANGELOG.md) - [TOML schema](https://github.com/moonrepo/schema-plugin/blob/master/CHANGELOG.md) -## Unreleased +## 0.38.3 #### 🧩 Plugins diff --git a/Cargo.lock b/Cargo.lock index 2eede2fa0..c24679d6d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2301,7 +2301,7 @@ dependencies = [ [[package]] name = "proto_cli" -version = "0.38.2" +version = "0.38.3" dependencies = [ "anyhow", "async-trait", @@ -2351,7 +2351,7 @@ dependencies = [ [[package]] name = "proto_core" -version = "0.38.2" +version = "0.38.3" dependencies = [ "indexmap 2.2.6", "miette", @@ -2426,7 +2426,7 @@ dependencies = [ [[package]] name = "proto_pdk_test_utils" -version = "0.25.2" +version = "0.25.3" dependencies = [ "proto_core", "proto_pdk_api", @@ -3896,7 +3896,7 @@ dependencies = [ [[package]] name = "warpgate" -version = "0.15.2" +version = "0.15.3" dependencies = [ "extism", "miette", @@ -3921,7 +3921,7 @@ dependencies = [ [[package]] name = "warpgate_api" -version = "0.8.1" +version = "0.8.2" dependencies = [ "anyhow", "rustc-hash 2.0.0", @@ -3934,7 +3934,7 @@ dependencies = [ [[package]] name = "warpgate_pdk" -version = "0.6.0" +version = "0.6.1" dependencies = [ "extism-pdk", "serde", diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index ced0b3c00..57dd7bad1 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "proto_cli" -version = "0.38.2" +version = "0.38.3" edition = "2021" license = "MIT" description = "A multi-language version manager, a unified toolchain." @@ -32,7 +32,7 @@ name = "proto-shim" path = "src/main_shim.rs" [dependencies] -proto_core = { version = "0.38.2", path = "../core" } +proto_core = { version = "0.38.3", path = "../core" } proto_installer = { version = "0.5.2", path = "../installer" } proto_pdk_api = { version = "0.21.2", path = "../pdk-api" } proto_shim = { version = "0.4.1", path = "../shim" } diff --git a/crates/codegen/Cargo.toml b/crates/codegen/Cargo.toml index 7580ad3d3..208611986 100644 --- a/crates/codegen/Cargo.toml +++ b/crates/codegen/Cargo.toml @@ -9,7 +9,7 @@ publish = false dist = false [dependencies] -proto_core = { version = "0.38.2", path = "../core" } +proto_core = { version = "0.38.3", path = "../core" } proto_pdk_api = { version = "0.21.2", path = "../pdk-api", features = [ "schematic", ] } diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index 94f7ec8cc..d02487c1d 100644 --- a/crates/core/Cargo.toml +++ b/crates/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "proto_core" -version = "0.38.2" +version = "0.38.3" edition = "2021" license = "MIT" description = "Core proto APIs." @@ -13,7 +13,7 @@ proto_shim = { version = "0.4.1", path = "../shim" } version_spec = { version = "0.6.1", path = "../version-spec", features = [ "schematic", ] } -warpgate = { version = "0.15.2", path = "../warpgate", features = [ +warpgate = { version = "0.15.3", path = "../warpgate", features = [ "schematic", ] } indexmap = { workspace = true } diff --git a/crates/pdk-api/Cargo.toml b/crates/pdk-api/Cargo.toml index 57befd2d7..94bc176a1 100644 --- a/crates/pdk-api/Cargo.toml +++ b/crates/pdk-api/Cargo.toml @@ -10,7 +10,7 @@ repository = "https://github.com/moonrepo/proto" [dependencies] system_env = { version = "0.5.0", path = "../system-env" } version_spec = { version = "0.6.1", path = "../version-spec" } -warpgate_api = { version = "0.8.1", path = "../warpgate-api" } +warpgate_api = { version = "0.8.2", path = "../warpgate-api" } rustc-hash = { workspace = true } schematic = { workspace = true, optional = true, features = [ "schema", diff --git a/crates/pdk-test-utils/Cargo.toml b/crates/pdk-test-utils/Cargo.toml index 8194fe182..3ef4ef265 100644 --- a/crates/pdk-test-utils/Cargo.toml +++ b/crates/pdk-test-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "proto_pdk_test_utils" -version = "0.25.2" +version = "0.25.3" edition = "2021" license = "MIT" description = "Utilities for testing proto WASM plugins." @@ -8,9 +8,9 @@ homepage = "https://moonrepo.dev/proto" repository = "https://github.com/moonrepo/proto" [dependencies] -proto_core = { version = "0.38.2", path = "../core" } +proto_core = { version = "0.38.3", path = "../core" } proto_pdk_api = { version = "0.21.2", path = "../pdk-api" } -warpgate = { version = "0.15.2", path = "../warpgate" } +warpgate = { version = "0.15.3", path = "../warpgate" } serde = { workspace = true } serde_json = { workspace = true } starbase_sandbox = { workspace = true } diff --git a/crates/pdk/Cargo.toml b/crates/pdk/Cargo.toml index 37118ae05..5afbffda8 100644 --- a/crates/pdk/Cargo.toml +++ b/crates/pdk/Cargo.toml @@ -9,7 +9,7 @@ repository = "https://github.com/moonrepo/proto" [dependencies] proto_pdk_api = { version = "0.21.2", path = "../pdk-api" } -warpgate_pdk = { version = "0.6.0", path = "../warpgate-pdk" } +warpgate_pdk = { version = "0.6.1", path = "../warpgate-pdk" } extism-pdk = { workspace = true } rustc-hash = { workspace = true } serde = { workspace = true } diff --git a/crates/warpgate-api/Cargo.toml b/crates/warpgate-api/Cargo.toml index 95749c2bd..122dc40d1 100644 --- a/crates/warpgate-api/Cargo.toml +++ b/crates/warpgate-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "warpgate_api" -version = "0.8.1" +version = "0.8.2" edition = "2021" license = "MIT" description = "APIs for working with Warpgate plugins." diff --git a/crates/warpgate-pdk/Cargo.toml b/crates/warpgate-pdk/Cargo.toml index ad7e87b6c..98d647a33 100644 --- a/crates/warpgate-pdk/Cargo.toml +++ b/crates/warpgate-pdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "warpgate_pdk" -version = "0.6.0" +version = "0.6.1" edition = "2021" license = "MIT" description = "Reusable WASM macros and functions for plugin developer kits." @@ -8,6 +8,6 @@ homepage = "https://moonrepo.dev/proto" repository = "https://github.com/moonrepo/proto" [dependencies] -warpgate_api = { version = "0.8.1", path = "../warpgate-api" } +warpgate_api = { version = "0.8.2", path = "../warpgate-api" } extism-pdk = { workspace = true } serde = { workspace = true } diff --git a/crates/warpgate/Cargo.toml b/crates/warpgate/Cargo.toml index f854d469c..119816a7f 100644 --- a/crates/warpgate/Cargo.toml +++ b/crates/warpgate/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "warpgate" -version = "0.15.2" +version = "0.15.3" edition = "2021" license = "MIT" description = "Download, resolve, and manage Extism WASM plugins." @@ -8,7 +8,7 @@ repository = "https://github.com/moonrepo/proto" [dependencies] system_env = { version = "0.5.0", path = "../system-env" } -warpgate_api = { version = "0.8.1", path = "../warpgate-api" } +warpgate_api = { version = "0.8.2", path = "../warpgate-api" } extism = { workspace = true } miette = { workspace = true } once_cell = { workspace = true } diff --git a/version b/version index f2e78d495..f2687f32e 100644 --- a/version +++ b/version @@ -1 +1 @@ -0.38.2 +0.38.3