Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
milesj committed Sep 29, 2023
1 parent 5741090 commit 785c7e4
Show file tree
Hide file tree
Showing 10 changed files with 30 additions and 30 deletions.
16 changes: 8 additions & 8 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
Expand Up @@ -27,9 +27,9 @@ name = "proto"
path = "src/main.rs"

[dependencies]
proto_core = { version = "0.18.6", path = "../core" }
proto_pdk_api = { version = "0.7.2", path = "../pdk-api" }
proto_wasm_plugin = { version = "0.6.7", path = "../wasm-plugin" }
proto_core = { version = "0.18.7", path = "../core" }
proto_pdk_api = { version = "0.7.3", path = "../pdk-api" }
proto_wasm_plugin = { version = "0.6.8", path = "../wasm-plugin" }
system_env = { version = "0.0.1", path = "../system-env" }
chrono = "0.4.31"
clap = { workspace = true, features = ["derive", "env"] }
Expand Down
10 changes: 5 additions & 5 deletions crates/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
[package]
name = "proto_core"
version = "0.18.6"
version = "0.18.7"
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.7.2", path = "../pdk-api" }
proto_wasm_plugin = { version = "0.6.7", path = "../wasm-plugin" }
version_spec = { version = "0.1.0", path = "../version-spec" }
warpgate = { version = "0.5.8", path = "../warpgate" }
proto_pdk_api = { version = "0.7.3", path = "../pdk-api" }
proto_wasm_plugin = { version = "0.6.8", path = "../wasm-plugin" }
version_spec = { version = "0.1.1", path = "../version-spec" }
warpgate = { version = "0.5.9", path = "../warpgate" }
cached = { workspace = true }
extism = { workspace = true }
human-sort = { workspace = true }
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.7.2"
version = "0.7.3"
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.0.1", path = "../system-env" }
warpgate_api = { version = "0.1.3", path = "../warpgate-api" }
warpgate_api = { version = "0.1.4", path = "../warpgate-api" }
anyhow = "1.0.75"
semver = { workspace = true, features = ["serde"] }
serde = { workspace = true }
Expand Down
8 changes: 4 additions & 4 deletions crates/pdk-test-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[package]
name = "proto_pdk_test_utils"
version = "0.7.2"
version = "0.7.3"
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.18.6", path = "../core" }
proto_pdk_api = { version = "0.7.2", path = "../pdk-api" }
proto_wasm_plugin = { version = "0.6.7", path = "../wasm-plugin" }
proto_core = { version = "0.18.7", path = "../core" }
proto_pdk_api = { version = "0.7.3", path = "../pdk-api" }
proto_wasm_plugin = { version = "0.6.8", path = "../wasm-plugin" }
extism = { workspace = true }
serde_json = { workspace = true }
toml = { version = "0.8.1", optional = 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.7.4"
version = "0.7.5"
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.7.2", path = "../pdk-api" }
proto_pdk_api = { version = "0.7.3", path = "../pdk-api" }
anyhow = "1.0.75"
extism-pdk = { workspace = true }
once_cell = { 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.1.0"
version = "0.1.1"
edition = "2021"
license = "MIT"
description = "A specification for working with partial, full, or aliased versions."
Expand Down
2 changes: 1 addition & 1 deletion crates/warpgate-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "warpgate_api"
version = "0.1.3"
version = "0.1.4"
edition = "2021"
license = "MIT"
description = "APIs for working with Warpgate plugins."
Expand Down
4 changes: 2 additions & 2 deletions crates/warpgate/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "warpgate"
version = "0.5.8"
version = "0.5.9"
edition = "2021"
license = "MIT"
description = "Download, resolve, and manage Extism WASM plugins at runtime."
repository = "https://github.com/moonrepo/proto"

[dependencies]
warpgate_api = { version = "0.1.3", path = "../warpgate-api" }
warpgate_api = { version = "0.1.4", path = "../warpgate-api" }
extism = { workspace = true }
miette = { workspace = true }
once_cell = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/wasm-plugin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "proto_wasm_plugin"
version = "0.6.7"
version = "0.6.8"
edition = "2021"
license = "MIT"
description = "Utilities for working with proto's WASM plugins."
homepage = "https://moonrepo.dev/proto"
repository = "https://github.com/moonrepo/proto"

[dependencies]
proto_pdk_api = { version = "0.7.2", path = "../pdk-api" }
proto_pdk_api = { version = "0.7.3", path = "../pdk-api" }
extism = { workspace = true }
serde_json = { workspace = true }
tracing = { workspace = true }

0 comments on commit 785c7e4

Please sign in to comment.