From 5aee488be65146cbeb8866735b602a644eaab8b2 Mon Sep 17 00:00:00 2001 From: Miles Johnson Date: Mon, 20 May 2024 10:31:00 -0700 Subject: [PATCH] chore: Release --- CHANGELOG.md | 2 +- Cargo.lock | 14 +++++++------- crates/cli/Cargo.toml | 6 +++--- crates/codegen/Cargo.toml | 2 +- crates/core/Cargo.toml | 6 +++--- crates/pdk-api/Cargo.toml | 4 ++-- crates/pdk-test-utils/Cargo.toml | 6 +++--- crates/pdk/Cargo.toml | 6 +++--- crates/warpgate-api/Cargo.toml | 2 +- crates/warpgate-pdk/Cargo.toml | 4 ++-- crates/warpgate/Cargo.toml | 4 ++-- version | 2 +- 12 files changed, 29 insertions(+), 29 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0fff16089..767e967ad 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.35.3 #### 🐞 Fixes diff --git a/Cargo.lock b/Cargo.lock index dc2a6cf20..cec8f3cd2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2285,7 +2285,7 @@ dependencies = [ [[package]] name = "proto_cli" -version = "0.35.2" +version = "0.35.3" dependencies = [ "anyhow", "chrono", @@ -2331,7 +2331,7 @@ dependencies = [ [[package]] name = "proto_core" -version = "0.35.3" +version = "0.35.4" dependencies = [ "cached", "indexmap 2.2.6", @@ -2380,7 +2380,7 @@ dependencies = [ [[package]] name = "proto_pdk" -version = "0.19.0" +version = "0.19.1" dependencies = [ "extism-pdk", "proto_pdk_api", @@ -2391,7 +2391,7 @@ dependencies = [ [[package]] name = "proto_pdk_api" -version = "0.19.0" +version = "0.19.1" dependencies = [ "proto_pdk_api", "rustc-hash", @@ -3837,7 +3837,7 @@ dependencies = [ [[package]] name = "warpgate" -version = "0.14.0" +version = "0.14.1" dependencies = [ "extism", "miette", @@ -3862,7 +3862,7 @@ dependencies = [ [[package]] name = "warpgate_api" -version = "0.7.0" +version = "0.7.1" dependencies = [ "anyhow", "rustc-hash", @@ -3875,7 +3875,7 @@ dependencies = [ [[package]] name = "warpgate_pdk" -version = "0.5.0" +version = "0.5.1" dependencies = [ "extism-pdk", "serde", diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 19ddeb8c3..a3cdaddf7 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "proto_cli" -version = "0.35.2" +version = "0.35.3" edition = "2021" license = "MIT" description = "A multi-language version manager, a unified toolchain." @@ -32,9 +32,9 @@ name = "proto-shim" path = "src/main_shim.rs" [dependencies] -proto_core = { version = "0.35.3", path = "../core" } +proto_core = { version = "0.35.4", path = "../core" } proto_installer = { version = "0.5.0", path = "../installer" } -proto_pdk_api = { version = "0.19.0", path = "../pdk-api" } +proto_pdk_api = { version = "0.19.1", path = "../pdk-api" } proto_shim = { version = "0.3.1", path = "../shim" } system_env = { version = "0.5.0", path = "../system-env" } anyhow = { workspace = true } diff --git a/crates/codegen/Cargo.toml b/crates/codegen/Cargo.toml index f84e5af95..c8faf162a 100644 --- a/crates/codegen/Cargo.toml +++ b/crates/codegen/Cargo.toml @@ -9,7 +9,7 @@ publish = false dist = false [dependencies] -proto_pdk_api = { version = "0.19.0", path = "../pdk-api", features = [ +proto_pdk_api = { version = "0.19.1", path = "../pdk-api", features = [ "schematic", ] } schematic = { workspace = true } diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index 032ab7fd2..3404ae99a 100644 --- a/crates/core/Cargo.toml +++ b/crates/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "proto_core" -version = "0.35.3" +version = "0.35.4" edition = "2021" license = "MIT" description = "Core proto APIs." @@ -8,12 +8,12 @@ homepage = "https://moonrepo.dev/proto" repository = "https://github.com/moonrepo/proto" [dependencies] -proto_pdk_api = { version = "0.19.0", path = "../pdk-api" } +proto_pdk_api = { version = "0.19.1", path = "../pdk-api" } proto_shim = { version = "0.3.1", path = "../shim" } version_spec = { version = "0.5.0", path = "../version-spec", features = [ "schematic", ] } -warpgate = { version = "0.14.0", path = "../warpgate", features = [ +warpgate = { version = "0.14.1", path = "../warpgate", features = [ "schematic", ] } cached = { workspace = true } diff --git a/crates/pdk-api/Cargo.toml b/crates/pdk-api/Cargo.toml index f99ced701..58046c1d7 100644 --- a/crates/pdk-api/Cargo.toml +++ b/crates/pdk-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "proto_pdk_api" -version = "0.19.0" +version = "0.19.1" edition = "2021" license = "MIT" description = "Core APIs for creating proto WASM plugins." @@ -10,7 +10,7 @@ repository = "https://github.com/moonrepo/proto" [dependencies] system_env = { version = "0.5.0", path = "../system-env" } version_spec = { version = "0.5.0", path = "../version-spec" } -warpgate_api = { version = "0.7.0", path = "../warpgate-api" } +warpgate_api = { version = "0.7.1", 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 6a6f01883..6f4193eef 100644 --- a/crates/pdk-test-utils/Cargo.toml +++ b/crates/pdk-test-utils/Cargo.toml @@ -8,9 +8,9 @@ homepage = "https://moonrepo.dev/proto" repository = "https://github.com/moonrepo/proto" [dependencies] -proto_core = { version = "0.35.3", path = "../core" } -proto_pdk_api = { version = "0.19.0", path = "../pdk-api" } -warpgate = { version = "0.14.0", path = "../warpgate" } +proto_core = { version = "0.35.4", path = "../core" } +proto_pdk_api = { version = "0.19.1", path = "../pdk-api" } +warpgate = { version = "0.14.1", 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 3b23c0ea3..7e8ef3a8a 100644 --- a/crates/pdk/Cargo.toml +++ b/crates/pdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "proto_pdk" -version = "0.19.0" +version = "0.19.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.19.0", path = "../pdk-api" } -warpgate_pdk = { version = "0.5.0", path = "../warpgate-pdk" } +proto_pdk_api = { version = "0.19.1", path = "../pdk-api" } +warpgate_pdk = { version = "0.5.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 1c7633aff..c274a0799 100644 --- a/crates/warpgate-api/Cargo.toml +++ b/crates/warpgate-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "warpgate_api" -version = "0.7.0" +version = "0.7.1" 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 cdaf54693..fccf68ee4 100644 --- a/crates/warpgate-pdk/Cargo.toml +++ b/crates/warpgate-pdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "warpgate_pdk" -version = "0.5.0" +version = "0.5.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.7.0", path = "../warpgate-api" } +warpgate_api = { version = "0.7.1", path = "../warpgate-api" } extism-pdk = { workspace = true } serde = { workspace = true } diff --git a/crates/warpgate/Cargo.toml b/crates/warpgate/Cargo.toml index ba3e843e2..bee164fd9 100644 --- a/crates/warpgate/Cargo.toml +++ b/crates/warpgate/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "warpgate" -version = "0.14.0" +version = "0.14.1" 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.7.0", path = "../warpgate-api" } +warpgate_api = { version = "0.7.1", path = "../warpgate-api" } extism = { workspace = true } miette = { workspace = true } once_cell = { workspace = true } diff --git a/version b/version index abc2aab9b..230be8682 100644 --- a/version +++ b/version @@ -1 +1 @@ -0.35.2 +0.35.3