Skip to content

Commit

Permalink
chore: bump to version 2.4.0-rc1 (specVersion: 132)
Browse files Browse the repository at this point in the history
  • Loading branch information
DylanVerstraete committed Mar 23, 2023
1 parent 797b136 commit e3868e9
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 11 deletions.
4 changes: 2 additions & 2 deletions substrate-node/Cargo.lock

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

2 changes: 1 addition & 1 deletion substrate-node/charts/substrate-node/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ name: substrate-node
description: Tfchain node
type: application
version: 0.3.0
appVersion: '2.3.0-rc8'
appVersion: '2.4.0-rc1'
2 changes: 1 addition & 1 deletion substrate-node/node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ homepage = 'https://substrate.dev'
license = 'Unlicense'
name = 'tfchain'
repository = 'https://github.com/substrate-developer-hub/substrate-node-template/'
version = '2.3.0-rc8'
version = '2.4.0-rc1'

[[bin]]
name = 'tfchain'
Expand Down
2 changes: 1 addition & 1 deletion substrate-node/runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ homepage = 'https://substrate.dev'
license = 'Unlicense'
name = 'tfchain-runtime'
repository = 'https://github.com/substrate-developer-hub/substrate-node-template/'
version = '2.3.0-rc8'
version = '2.4.0-rc1'

[package.metadata.docs.rs]
targets = ['x86_64-unknown-linux-gnu']
Expand Down
8 changes: 2 additions & 6 deletions substrate-node/runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("substrate-threefold"),
impl_name: create_runtime_str!("substrate-threefold"),
authoring_version: 1,
spec_version: 131,
spec_version: 132,
impl_version: 1,
apis: RUNTIME_API_VERSIONS,
transaction_version: 2,
Expand Down Expand Up @@ -765,11 +765,7 @@ pub type Executive = frame_executive::Executive<

// All migrations executed on runtime upgrade as a nested tuple of types implementing
// `OnRuntimeUpgrade`.
type Migrations = (
pallet_tfgrid::migrations::v14::FixFarmingPoliciesMap<Runtime>,
migrations::tfgrid_v15_smart_contract_v8::Migrate<Runtime>,
pallet_smart_contract::migrations::v9::CleanBillingLoop<Runtime>,
);
type Migrations = (pallet_smart_contract::migrations::v9::CleanBillingLoop<Runtime>,);

// follows Substrate's non destructive way of eliminating otherwise required
// repetion: https://github.com/paritytech/substrate/pull/10592
Expand Down

0 comments on commit e3868e9

Please sign in to comment.