Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add unstable-api feature flag to pallet-revive #6866

Merged
merged 14 commits into from
Dec 13, 2024
13 changes: 13 additions & 0 deletions prdoc/pr_6866.prdoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
title: Refactor `pallet-revive-uapi` pallet
doc:
- audience: Runtime Dev
description: Puts unstable host functions in `uapi` under
`unstable-api` feature while moving those functions after
stable functions.
crates:
- name: pallet-revive
bump: patch
athei marked this conversation as resolved.
Show resolved Hide resolved
- name: pallet-revive-fixtures
bump: patch
- name: pallet-revive-uapi
bump: major
2 changes: 1 addition & 1 deletion substrate/frame/revive/fixtures/build/_Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ edition = "2021"

# All paths are injected dynamically by the build script.
[dependencies]
uapi = { package = 'pallet-revive-uapi', path = "", default-features = false }
uapi = { package = 'pallet-revive-uapi', path = "", features = ["unstable-api"], default-features = false }
common = { package = 'pallet-revive-fixtures-common', path = "" }
polkavm-derive = { version = "0.17.0" }

Expand Down
Loading
Loading