Skip to content

Commit

Permalink
publish polkadot-sdk-frame
Browse files Browse the repository at this point in the history
  • Loading branch information
Morganamilo committed May 3, 2024
1 parent ce44216 commit 82b4e85
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 11 deletions.
3 changes: 1 addition & 2 deletions Plan.toml
Original file line number Diff line number Diff line change
Expand Up @@ -1596,9 +1596,8 @@ reason = "changed"
[[crate]]
name = "polkadot-sdk-frame"
from = "0.1.0"
to = "0.1.0"
to = "0.2.0"
bump = "major"
publish = false

[[crate]]
name = "relay-utils"
Expand Down
2 changes: 1 addition & 1 deletion docs/sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ workspace = true
# Needed for all FRAME-based code
parity-scale-codec = { version = "3.0.0", default-features = false }
scale-info = { version = "2.6.0", default-features = false }
frame = { package = "polkadot-sdk-frame", path = "../../substrate/frame", features = ["experimental", "runtime"], version = "0.1.0" }
frame = { package = "polkadot-sdk-frame", path = "../../substrate/frame", features = ["experimental", "runtime"], version = "0.2.0" }
pallet-examples = { version = "0.1.0", path = "../../substrate/frame/examples" }
pallet-default-config-example = { version = "15.0.0", path = "../../substrate/frame/examples/default-config" }
pallet-example-offchain-worker = { version = "33.0.0", path = "../../substrate/frame/examples/offchain-worker" }
Expand Down
5 changes: 2 additions & 3 deletions substrate/frame/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
[package]
name = "polkadot-sdk-frame"
version = "0.1.0"
version = "0.2.0"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
homepage = "paritytech.github.io"
homepage = "https://paritytech.github.io"
repository.workspace = true
description = "Experimental: The single package to get you started with building frame pallets and runtimes (polkadot v1.11.0)"
publish = false

[lints]
workspace = true
Expand Down
2 changes: 1 addition & 1 deletion substrate/frame/examples/frame-crate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ targets = ["x86_64-unknown-linux-gnu"]
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false }
scale-info = { version = "2.11.1", default-features = false, features = ["derive"] }

frame = { package = "polkadot-sdk-frame", path = "../..", default-features = false, features = ["experimental", "runtime"], version = "0.1.0" }
frame = { package = "polkadot-sdk-frame", path = "../..", default-features = false, features = ["experimental", "runtime"], version = "0.2.0" }


[features]
Expand Down
2 changes: 1 addition & 1 deletion substrate/frame/support/test/stg_frame_crate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ targets = ["x86_64-unknown-linux-gnu"]

[dependencies]
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive"] }
frame = { package = "polkadot-sdk-frame", path = "../../..", default-features = false, features = ["experimental", "runtime"], version = "0.1.0" }
frame = { package = "polkadot-sdk-frame", path = "../../..", default-features = false, features = ["experimental", "runtime"], version = "0.2.0" }
scale-info = { version = "2.11.1", default-features = false, features = ["derive"] }

[features]
Expand Down
2 changes: 1 addition & 1 deletion templates/minimal/node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ substrate-frame-rpc-system = { version = "33.0.0", path = "../../../substrate/ut

# Once the native runtime is gone, there should be little to no dependency on FRAME here, and
# certainly no dependency on the runtime.
frame = { package = "polkadot-sdk-frame", path = "../../../substrate/frame", features = ["experimental", "runtime"], version = "0.1.0" }
frame = { package = "polkadot-sdk-frame", path = "../../../substrate/frame", features = ["experimental", "runtime"], version = "0.2.0" }
runtime = { package = "minimal-template-runtime", path = "../runtime", version = "0.1.0" }

[build-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion templates/minimal/pallets/template/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ codec = { package = "parity-scale-codec", version = "3.0.0", features = [
scale-info = { version = "2.11.1", default-features = false, features = [
"derive",
] }
frame = { package = "polkadot-sdk-frame", path = "../../../../substrate/frame", default-features = false, features = ["experimental", "runtime"], version = "0.1.0" }
frame = { package = "polkadot-sdk-frame", path = "../../../../substrate/frame", default-features = false, features = ["experimental", "runtime"], version = "0.2.0" }


[features]
Expand Down
2 changes: 1 addition & 1 deletion templates/minimal/runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ parity-scale-codec = { version = "3.0.0", default-features = false }
scale-info = { version = "2.6.0", default-features = false }

# this is a frame-based runtime, thus importing `frame` with runtime feature enabled.
frame = { package = "polkadot-sdk-frame", path = "../../../substrate/frame", default-features = false, features = ["experimental", "runtime"], version = "0.1.0" }
frame = { package = "polkadot-sdk-frame", path = "../../../substrate/frame", default-features = false, features = ["experimental", "runtime"], version = "0.2.0" }

# pallets that we want to use
pallet-balances = { path = "../../../substrate/frame/balances", default-features = false, version = "34.0.0" }
Expand Down

0 comments on commit 82b4e85

Please sign in to comment.