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

Make frame crate not use the feature experimental #7177

Merged
merged 5 commits into from
Jan 17, 2025
Merged
Show file tree
Hide file tree
Changes from 2 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
12 changes: 12 additions & 0 deletions prdoc/pr_7177.prdoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
title: Make frame crate not experimental
doc:
- audience: Runtime Dev
description: |-
We already use it for lots of pallet.

Keeping it feature gated by experimental means we lose the information of which pallet was using experimental before the migration to frame crate usage.

I think we should rather just consider `frame` crate not experimental.
gui1117 marked this conversation as resolved.
Show resolved Hide resolved
crates:
- name: polkadot-sdk-frame
bump: minor
1 change: 0 additions & 1 deletion substrate/frame/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,6 @@
//! * `runtime::apis` should expose all common runtime APIs that all FRAME-based runtimes need.

#![cfg_attr(not(feature = "std"), no_std)]
#![cfg(feature = "experimental")]

#[doc(no_inline)]
pub use frame_support::pallet;
Expand Down
Loading