Skip to content
This repository has been archived by the owner on Jul 17, 2024. It is now read-only.

Commit

Permalink
new: Support proto v0.29. (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
milesj authored Jan 23, 2024
1 parent b7e7063 commit 266e686
Show file tree
Hide file tree
Showing 6 changed files with 102 additions and 68 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,5 @@ jobs:
bins: cargo-nextest
cache: false
- uses: moonrepo/setup-toolchain@v0
with:
proto-version: 0.28.0-rc.0
- uses: moonrepo/build-proto-plugin@v0
- run: cargo nextest run --no-default-features
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 0.9.0

#### 🚀 Updates

- Updated to support proto v0.29 release.
- Added `globals.bin` setting, for customizing the bin used for installs/uninstalls.

## 0.8.0

#### 💥 Breaking
Expand Down
124 changes: 70 additions & 54 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "schema_plugin"
version = "0.8.0"
version = "0.9.0"
edition = "2021"
license = "MIT"
publish = false
Expand All @@ -10,16 +10,16 @@ crate-type = ['cdylib']

[dependencies]
extism-pdk = "1.0.0"
proto_pdk = { version = "0.14.2" } #, path = "../../proto/crates/pdk" }
regex = { version = "1.10.2", default-features = false, features = ["std"] }
proto_pdk = { version = "0.15.1" } #, path = "../../proto/crates/pdk" }
regex = { version = "1.10.3", default-features = false, features = ["std"] }
serde = "1.0.195"
serde_json = "1.0.111"

[dev-dependencies]
proto_pdk_test_utils = { version = "0.16.1", features = [
proto_pdk_test_utils = { version = "0.17.2", features = [
"schema",
] } #, path = "../../proto/crates/pdk-test-utils" }
starbase_sandbox = "0.1.12"
starbase_sandbox = "0.1.13"
tokio = { version = "1.35.1", features = ["full"] }

[features]
Expand Down
Loading

0 comments on commit 266e686

Please sign in to comment.