Skip to content

Commit 6db4fb3

Browse files
committed
chore: Release
1 parent 092e87a commit 6db4fb3

File tree

8 files changed

+20
-20
lines changed

8 files changed

+20
-20
lines changed

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ name = "proto-shim"
3232
path = "src/main_shim.rs"
3333

3434
[dependencies]
35-
proto_core = { version = "0.43.6", path = "../core", features = ["clap"] }
35+
proto_core = { version = "0.43.7", path = "../core", features = ["clap"] }
3636
proto_installer = { version = "0.7.1", path = "../installer" }
37-
proto_pdk_api = { version = "0.24.4", path = "../pdk-api" }
37+
proto_pdk_api = { version = "0.24.5", path = "../pdk-api" }
3838
proto_shim = { version = "0.5.0", path = "../shim" }
3939
system_env = { version = "0.6.1", path = "../system-env" }
4040
anyhow = { workspace = true }

crates/codegen/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ publish = false
99
dist = false
1010

1111
[dependencies]
12-
proto_core = { version = "0.43.6", path = "../core" }
13-
proto_pdk_api = { version = "0.24.4", path = "../pdk-api", features = [
12+
proto_core = { version = "0.43.7", path = "../core" }
13+
proto_pdk_api = { version = "0.24.5", path = "../pdk-api", features = [
1414
"schematic",
1515
] }
1616
schematic = { workspace = true, features = [

crates/core/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
[package]
22
name = "proto_core"
3-
version = "0.43.6"
3+
version = "0.43.7"
44
edition = "2021"
55
license = "MIT"
66
description = "Core proto APIs."
77
homepage = "https://moonrepo.dev/proto"
88
repository = "https://github.com/moonrepo/proto"
99

1010
[dependencies]
11-
proto_pdk_api = { version = "0.24.4", path = "../pdk-api", features = [
11+
proto_pdk_api = { version = "0.24.5", path = "../pdk-api", features = [
1212
"schematic",
1313
] }
1414
proto_shim = { version = "0.5.0", path = "../shim" }
15-
version_spec = { version = "0.7.0", path = "../version-spec", features = [
15+
version_spec = { version = "0.7.1", path = "../version-spec", features = [
1616
"schematic",
1717
] }
1818
warpgate = { version = "0.20.0", path = "../warpgate", features = [

crates/pdk-api/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "proto_pdk_api"
3-
version = "0.24.4"
3+
version = "0.24.5"
44
edition = "2021"
55
license = "MIT"
66
description = "Core APIs for creating proto WASM plugins."
@@ -9,7 +9,7 @@ repository = "https://github.com/moonrepo/proto"
99

1010
[dependencies]
1111
system_env = { version = "0.6.1", path = "../system-env" }
12-
version_spec = { version = "0.7.0", path = "../version-spec" }
12+
version_spec = { version = "0.7.1", path = "../version-spec" }
1313
warpgate_api = { version = "0.10.1", path = "../warpgate-api" }
1414
rustc-hash = { workspace = true }
1515
schematic = { workspace = true, features = [

crates/pdk-test-utils/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[package]
22
name = "proto_pdk_test_utils"
3-
version = "0.30.3"
3+
version = "0.30.4"
44
edition = "2021"
55
license = "MIT"
66
description = "Utilities for testing proto WASM plugins."
77
homepage = "https://moonrepo.dev/proto"
88
repository = "https://github.com/moonrepo/proto"
99

1010
[dependencies]
11-
proto_core = { version = "0.43.6", path = "../core" }
12-
proto_pdk_api = { version = "0.24.4", path = "../pdk-api" }
11+
proto_core = { version = "0.43.7", path = "../core" }
12+
proto_pdk_api = { version = "0.24.5", path = "../pdk-api" }
1313
warpgate = { version = "0.20.0", path = "../warpgate" }
1414
# extism = { workspace = true }
1515
serde = { workspace = true }

crates/pdk/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "proto_pdk"
3-
version = "0.25.4"
3+
version = "0.25.5"
44
edition = "2021"
55
license = "MIT"
66
description = "A plugin development kit for creating proto WASM plugins."
77
homepage = "https://moonrepo.dev/proto"
88
repository = "https://github.com/moonrepo/proto"
99

1010
[dependencies]
11-
proto_pdk_api = { version = "0.24.4", path = "../pdk-api" }
11+
proto_pdk_api = { version = "0.24.5", path = "../pdk-api" }
1212
warpgate_pdk = { version = "0.8.1", path = "../warpgate-pdk" }
1313
extism-pdk = { workspace = true }
1414
rustc-hash = { workspace = true }

crates/version-spec/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "version_spec"
3-
version = "0.7.0"
3+
version = "0.7.1"
44
edition = "2021"
55
license = "MIT"
66
description = "A specification for working with partial, full, or aliased versions. Supports semver and calver."

0 commit comments

Comments
 (0)