Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
milesj committed Jul 21, 2023
1 parent 0385092 commit ef42d69
Show file tree
Hide file tree
Showing 13 changed files with 39 additions and 39 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unreleased
## 0.13.0

#### 🚀 Updates

Expand Down
20 changes: 10 additions & 10 deletions Cargo.lock

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

14 changes: 7 additions & 7 deletions crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "proto_cli"
version = "0.12.1"
version = "0.13.0"
edition = "2021"
license = "MIT"
description = "A multi-language toolchain and version manager."
Expand All @@ -27,12 +27,12 @@ name = "proto"
path = "src/bin.rs"

[dependencies]
proto_core = { version = "0.12.2", path = "../core" }
proto_node = { version = "0.11.1", path = "../node" }
proto_rust = { version = "0.9.2", path = "../rust" }
proto_schema_plugin = { version = "0.7.2", path = "../schema-plugin" }
proto_wasm_plugin = { version = "0.2.3", path = "../wasm-plugin" }
warpgate = { version = "0.1.0", path = "../warpgate" }
proto_core = { version = "0.13.0", path = "../core" }
proto_node = { version = "0.12.0", path = "../node" }
proto_rust = { version = "0.10.0", path = "../rust" }
proto_schema_plugin = { version = "0.8.0", path = "../schema-plugin" }
proto_wasm_plugin = { version = "0.3.0", path = "../wasm-plugin" }
warpgate = { version = "0.2.0", path = "../warpgate" }
async-recursion = "1.0.4"
clap = { workspace = true, features = ["derive", "env"] }
clap_complete = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "proto_core"
version = "0.12.2"
version = "0.13.0"
edition = "2021"
license = "MIT"
description = "Core proto APIs for languages to implement."
homepage = "https://moonrepo.dev/proto"
repository = "https://github.com/moonrepo/proto"

[dependencies]
warpgate = { version = "0.1.0", path = "../warpgate" }
warpgate = { version = "0.2.0", path = "../warpgate" }
async-trait = "0.1.71"
cached = { workspace = true }
convert_case = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "proto_node"
version = "0.11.1"
version = "0.12.0"
edition = "2021"
license = "MIT"
description = "Node.js support for proto."
homepage = "https://moonrepo.dev/proto"
repository = "https://github.com/moonrepo/proto"

[dependencies]
proto_core = { version = "0.12.2", path = "../core" }
proto_core = { version = "0.13.0", path = "../core" }
clean-path = "0.2.1"
once_cell = { workspace = true }
rustc-hash = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion 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.2.3"
version = "0.3.0"
edition = "2021"
license = "MIT"
description = "Core APIs for creating proto WASM plugins."
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,14 +1,14 @@
[package]
name = "proto_pdk_test_utils"
version = "0.1.3"
version = "0.2.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.12.2", path = "../core" }
proto_pdk_api = { version = "0.2.3", path = "../pdk-api" }
proto_wasm_plugin = { version = "0.2.3", path = "../wasm-plugin" }
proto_core = { version = "0.13.0", path = "../core" }
proto_pdk_api = { version = "0.3.0", path = "../pdk-api" }
proto_wasm_plugin = { version = "0.3.0", path = "../wasm-plugin" }
extism = { workspace = true }
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.2.3"
version = "0.3.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.2.3", path = "../pdk-api" }
proto_pdk_api = { version = "0.3.0", path = "../pdk-api" }
anyhow = "1.0.71"
extism-pdk = { workspace = true }
once_cell = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "proto_rust"
version = "0.9.2"
version = "0.10.0"
edition = "2021"
license = "MIT"
description = "Rust support for proto."
homepage = "https://moonrepo.dev/proto"
repository = "https://github.com/moonrepo/proto"

[dependencies]
proto_core = { version = "0.12.2", path = "../core" }
proto_core = { version = "0.13.0", path = "../core" }
once_cell = { workspace = true }
tokio = { workspace = true }
tracing = { workspace = true }
4 changes: 2 additions & 2 deletions crates/schema-plugin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "proto_schema_plugin"
version = "0.7.2"
version = "0.8.0"
edition = "2021"
license = "MIT"
description = "A schema plugin for proto, with TOML support."
homepage = "https://moonrepo.dev/proto"
repository = "https://github.com/moonrepo/proto"

[dependencies]
proto_core = { version = "0.12.2", path = "../core" }
proto_core = { version = "0.13.0", path = "../core" }
once_cell = { workspace = true }
regex = { workspace = true }
rustc-hash = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/warpgate/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "warpgate"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
license = "MIT"
description = "Download, resolve, and manage Extism WASM plugins at runtime."
Expand Down
8 changes: 4 additions & 4 deletions crates/wasm-plugin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[package]
name = "proto_wasm_plugin"
version = "0.2.3"
version = "0.3.0"
edition = "2021"
license = "MIT"
description = "A WASM plugin for proto."
homepage = "https://moonrepo.dev/proto"
repository = "https://github.com/moonrepo/proto"

[dependencies]
proto_core = { version = "0.12.2", path = "../core" }
proto_pdk_api = { version = "0.2.3", path = "../pdk-api" }
warpgate = { version = "0.1.0", path = "../warpgate" }
proto_core = { version = "0.13.0", path = "../core" }
proto_pdk_api = { version = "0.3.0", path = "../pdk-api" }
warpgate = { version = "0.2.0", path = "../warpgate" }
extism = { workspace = true }
human-sort = { workspace = true }
once_cell = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.12.1
0.13.0

0 comments on commit ef42d69

Please sign in to comment.