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.22 release. (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
milesj authored Nov 4, 2023
1 parent 68b3695 commit 07b675f
Showing 10 changed files with 168 additions and 165 deletions.
1 change: 1 addition & 0 deletions .prototools
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
[plugins]
moon-test = "source:https://raw.githubusercontent.com/moonrepo/moon/master/proto-plugin.toml"
# internal-schema = "source:target/wasm32-wasi/debug/schema_plugin.wasm"
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## 0.5.0

#### 🚀 Updates

- Added `install.no_bin` and `install.no_shim` fields.
- Updated to support proto v0.22 release.
- Deprecated undocumented `shim` setting.

#### ⚙️ Internal

- Updated dependencies.

## 0.4.1

#### 🐞 Fixes
30 changes: 15 additions & 15 deletions Cargo.lock

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

8 changes: 5 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "schema_plugin"
version = "0.4.1"
version = "0.5.0"
edition = "2021"
license = "MIT"
publish = false
@@ -10,13 +10,15 @@ crate-type = ['cdylib']

[dependencies]
extism-pdk = "0.3.4"
proto_pdk = { version = "0.9.0" } # , path = "../../proto/crates/pdk" }
proto_pdk = { version = "0.10.0" } # , path = "../../proto/crates/pdk" }
regex = { version = "1.10.2", default-features = false, features = ["std"] }
serde = "1.0.190"
serde_json = "1.0.108"

[dev-dependencies]
proto_pdk_test_utils = { version = "0.9.1", features = ["schema"] }
proto_pdk_test_utils = { version = "0.10.0", features = [
"schema",
] } # , path = "../../proto/crates/pdk-test-utils" }
starbase_sandbox = "0.1.12"
tokio = { version = "1.33.0", features = ["full"] }

Loading

0 comments on commit 07b675f

Please sign in to comment.