Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
milesj committed Jun 16, 2024
1 parent 08efc4b commit 75158d7
Show file tree
Hide file tree
Showing 10 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.37.0

#### 💥 Breaking

Expand Down
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "proto_cli"
version = "0.36.2"
version = "0.37.0"
edition = "2021"
license = "MIT"
description = "A multi-language version manager, a unified toolchain."
Expand Down Expand Up @@ -32,9 +32,9 @@ name = "proto-shim"
path = "src/main_shim.rs"

[dependencies]
proto_core = { version = "0.36.3", path = "../core" }
proto_core = { version = "0.37.0", path = "../core" }
proto_installer = { version = "0.5.0", path = "../installer" }
proto_pdk_api = { version = "0.20.0", path = "../pdk-api" }
proto_pdk_api = { version = "0.21.0", path = "../pdk-api" }
proto_shim = { version = "0.4.1", path = "../shim" }
system_env = { version = "0.5.0", path = "../system-env" }
anyhow = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ publish = false
dist = false

[dependencies]
proto_core = { version = "0.36.3", path = "../core" }
proto_pdk_api = { version = "0.20.0", path = "../pdk-api", features = [
proto_core = { version = "0.37.0", path = "../core" }
proto_pdk_api = { version = "0.21.0", path = "../pdk-api", features = [
"schematic",
] }
schematic = { workspace = true, features = [
Expand Down
6 changes: 3 additions & 3 deletions crates/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[package]
name = "proto_core"
version = "0.36.3"
version = "0.37.0"
edition = "2021"
license = "MIT"
description = "Core proto APIs."
homepage = "https://moonrepo.dev/proto"
repository = "https://github.com/moonrepo/proto"

[dependencies]
proto_pdk_api = { version = "0.20.0", path = "../pdk-api" }
proto_pdk_api = { version = "0.21.0", path = "../pdk-api" }
proto_shim = { version = "0.4.1", path = "../shim" }
version_spec = { version = "0.5.2", path = "../version-spec", features = [
version_spec = { version = "0.6.0", path = "../version-spec", features = [
"schematic",
] }
warpgate = { version = "0.15.0", path = "../warpgate", features = [
Expand Down
4 changes: 2 additions & 2 deletions crates/pdk-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "proto_pdk_api"
version = "0.20.0"
version = "0.21.0"
edition = "2021"
license = "MIT"
description = "Core APIs for creating proto WASM plugins."
Expand All @@ -9,7 +9,7 @@ repository = "https://github.com/moonrepo/proto"

[dependencies]
system_env = { version = "0.5.0", path = "../system-env" }
version_spec = { version = "0.5.2", path = "../version-spec" }
version_spec = { version = "0.6.0", path = "../version-spec" }
warpgate_api = { version = "0.8.0", path = "../warpgate-api" }
rustc-hash = { workspace = true }
schematic = { workspace = true, optional = true, features = [
Expand Down
6 changes: 3 additions & 3 deletions crates/pdk-test-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "proto_pdk_test_utils"
version = "0.24.1"
version = "0.25.0"
edition = "2021"
license = "MIT"
description = "Utilities for testing proto WASM plugins."
homepage = "https://moonrepo.dev/proto"
repository = "https://github.com/moonrepo/proto"

[dependencies]
proto_core = { version = "0.36.3", path = "../core" }
proto_pdk_api = { version = "0.20.0", path = "../pdk-api" }
proto_core = { version = "0.37.0", path = "../core" }
proto_pdk_api = { version = "0.21.0", path = "../pdk-api" }
warpgate = { version = "0.15.0", path = "../warpgate" }
serde = { workspace = true }
serde_json = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/pdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "proto_pdk"
version = "0.20.0"
version = "0.21.0"
edition = "2021"
license = "MIT"
description = "A plugin development kit for creating proto WASM plugins."
homepage = "https://moonrepo.dev/proto"
repository = "https://github.com/moonrepo/proto"

[dependencies]
proto_pdk_api = { version = "0.20.0", path = "../pdk-api" }
proto_pdk_api = { version = "0.21.0", path = "../pdk-api" }
warpgate_pdk = { version = "0.6.0", path = "../warpgate-pdk" }
extism-pdk = { workspace = true }
rustc-hash = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/version-spec/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "version_spec"
version = "0.5.2"
version = "0.6.0"
edition = "2021"
license = "MIT"
description = "A specification for working with partial, full, or aliased versions. Supports semver and calver."
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.36.2
0.37.0

0 comments on commit 75158d7

Please sign in to comment.