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

deps: Update deps for v0.28. #15

Merged
merged 1 commit into from
Jan 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,14 @@ jobs:
- uses: moonrepo/setup-rust@v1
with:
cache: false
- uses: moonrepo/build-proto-plugin@v0
- id: build
uses: moonrepo/build-wasm-plugin@v0
- if: ${{ github.event_name == 'push' && github.ref_type == 'tag' }}
uses: ncipollo/release-action@v1
with:
artifacts: builds/*
artifactErrorsFailBuild: true
body: ${{ steps.build.outputs.changelog-entry }}
makeLatest: true
prerelease: ${{ contains(github.ref_name, '-alpha') || contains(github.ref_name, '-beta') || contains(github.ref_name, '-rc') }}
skipIfReleaseExists: true
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

#### 🚀 Updates

- Added support for Python 3.12 pre-builts.
- Updated to support proto v0.28 release.
- Updated to extism-pdk v1.

Expand Down
24 changes: 12 additions & 12 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ crate-type = ['cdylib']

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

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

Expand Down
Loading