Skip to content

Commit

Permalink
set version 4.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrei Navoichyk committed Jun 7, 2023
1 parent f475c4b commit ed75d19
Show file tree
Hide file tree
Showing 19 changed files with 50 additions and 46 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## vNext

...

## [4.2.0]

### Changed

- Updated Substrate to polkadot-v0.9.24
Expand Down
30 changes: 15 additions & 15 deletions 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ path = "src/main.rs"
[package]
name = "cere"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
version = "4.1.0"
version = "4.2.0"
edition = "2021"
build = "build.rs"

Expand Down
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cere-cli"
version = "4.1.0"
version = "4.2.0"
edition = "2021"

[package.metadata.wasm-pack.profile.release]
Expand Down
2 changes: 1 addition & 1 deletion node/client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cere-client"
version = "4.1.0"
version = "4.2.0"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion node/service/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cere-service"
version = "4.1.0"
version = "4.2.0"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion pallets/chainbridge/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pallet-chainbridge"
version = "2.0.0"
version = "4.2.0"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
license = "Unlicense"
Expand Down
2 changes: 1 addition & 1 deletion pallets/ddc-metrics-offchain-worker/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pallet-ddc-metrics-offchain-worker"
version = "2.0.1"
version = "4.2.0"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
license = "Unlicense"
Expand Down
4 changes: 2 additions & 2 deletions pallets/ddc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ homepage = 'https://www.cere.network/'
license = 'Unlicense'
name = 'pallet-cere-ddc'
repository = 'https://github.com/Cerebellum-Network/ddc-pallet'
version = '7.3.0'
version = '4.2.0'
readme = 'README.md'

[package.metadata.docs.rs]
Expand Down Expand Up @@ -34,4 +34,4 @@ std = [
'sp-runtime/std',
'frame-support/std',
'frame-system/std',
]
]
6 changes: 3 additions & 3 deletions pallets/erc20/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pallet-erc20"
version = "2.0.0"
version = "4.2.0"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
license = "Unlicense"
Expand All @@ -23,8 +23,8 @@ sp-std = { version = "4.0.0", default-features = false, git = "https://github.co
sp-io = { version = "6.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.24" }
sp-core = { version = "6.0.0", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.24", default-features = false }
sp-arithmetic = { version = "5.0.0", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.24", default-features = false }
pallet-chainbridge = { version = "2.0.0", default-features = false, path = "../chainbridge" }
pallet-erc721 = { version = "2.0.0", default-features = false, path = "../erc721" }
pallet-chainbridge = { version = "4.2.0", default-features = false, path = "../chainbridge" }
pallet-erc721 = { version = "4.2.0", default-features = false, path = "../erc721" }
scale-info = { version = "2.1.2", default-features = false, features = ["derive"] }

frame-benchmarking = { version = "4.0.0-dev", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.24", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions pallets/erc721/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pallet-erc721"
version = "2.0.0"
version = "4.2.0"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
license = "Unlicense"
Expand All @@ -22,7 +22,7 @@ sp-runtime = { version = "6.0.0", default-features = false, git = "https://githu
sp-std = { version = "4.0.0", default-features = false,git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.24" }
sp-io = { version = "6.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.24" }
sp-core = { version = "6.0.0", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.24", default-features = false }
pallet-chainbridge = { version = "2.0.0", default-features = false, path = "../chainbridge" }
pallet-chainbridge = { version = "4.2.0", default-features = false, path = "../chainbridge" }
scale-info = { version = "2.1.2", default-features = false, features = ["derive"] }

frame-benchmarking = { version = "4.0.0-dev", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.24", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion rpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cere-rpc"
version = "4.1.0"
version = "4.2.0"
edition = "2021"

[dependencies]
Expand Down
12 changes: 6 additions & 6 deletions runtime/cere-dev/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cere-dev-runtime"
version = "4.1.0"
version = "4.2.0"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
build = "build.rs"
Expand Down Expand Up @@ -93,11 +93,11 @@ pallet-vesting = { version = "4.0.0-dev", default-features = false, git = "https
cere-runtime-common = { path = "../common", default-features = false }
cere-dev-runtime-constants = { path = "./constants", default-features = false }
pallet-ddc-staking = { version = "0.1.0", default-features = false, path = "../../pallets/ddc-staking" }
pallet-chainbridge = { version = "2.0.0", default-features = false, path = "../../pallets/chainbridge" }
pallet-cere-ddc = { version = "7.3.0", default-features = false, path = "../../pallets/ddc" }
pallet-erc721 = { version = "2.0.0", default-features = false, path = "../../pallets/erc721" }
pallet-erc20 = { version = "2.0.0", default-features = false, path = "../../pallets/erc20" }
pallet-ddc-metrics-offchain-worker = { version = "2.0.0", default-features = false, path = "../../pallets/ddc-metrics-offchain-worker" }
pallet-chainbridge = { version = "4.2.0", default-features = false, path = "../../pallets/chainbridge" }
pallet-cere-ddc = { version = "4.2.0", default-features = false, path = "../../pallets/ddc" }
pallet-erc721 = { version = "4.2.0", default-features = false, path = "../../pallets/erc721" }
pallet-erc20 = { version = "4.2.0", default-features = false, path = "../../pallets/erc20" }
pallet-ddc-metrics-offchain-worker = { version = "4.2.0", default-features = false, path = "../../pallets/ddc-metrics-offchain-worker" }

[build-dependencies]
substrate-wasm-builder = { version = "5.0.0-dev", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.24" }
Expand Down
2 changes: 1 addition & 1 deletion runtime/cere-dev/constants/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cere-dev-runtime-constants"
version = "4.1.0"
version = "4.2.0"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion runtime/cere-dev/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
// and set impl_version to 0. If only runtime
// implementation changes and behavior does not, then leave spec_version as
// is and increment impl_version.
spec_version: 30900,
spec_version: 42000,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 2,
Expand Down
12 changes: 6 additions & 6 deletions runtime/cere/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cere-runtime"
version = "4.1.0"
version = "4.2.0"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
build = "build.rs"
Expand Down Expand Up @@ -92,11 +92,11 @@ pallet-transaction-storage = { version = "4.0.0-dev", default-features = false,
pallet-vesting = { version = "4.0.0-dev", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.24" }
cere-runtime-common = { path = "../common", default-features = false }
cere-runtime-constants = { path = "./constants", default-features = false }
pallet-chainbridge = { version = "2.0.0", default-features = false, path = "../../pallets/chainbridge" }
pallet-cere-ddc = { version = "7.3.0", default-features = false, path = "../../pallets/ddc" }
pallet-erc721 = { version = "2.0.0", default-features = false, path = "../../pallets/erc721" }
pallet-erc20 = { version = "2.0.0", default-features = false, path = "../../pallets/erc20" }
pallet-ddc-metrics-offchain-worker = { version = "2.0.0", default-features = false, path = "../../pallets/ddc-metrics-offchain-worker" }
pallet-chainbridge = { version = "4.2.0", default-features = false, path = "../../pallets/chainbridge" }
pallet-cere-ddc = { version = "4.2.0", default-features = false, path = "../../pallets/ddc" }
pallet-erc721 = { version = "4.2.0", default-features = false, path = "../../pallets/erc721" }
pallet-erc20 = { version = "4.2.0", default-features = false, path = "../../pallets/erc20" }
pallet-ddc-metrics-offchain-worker = { version = "4.2.0", default-features = false, path = "../../pallets/ddc-metrics-offchain-worker" }

[build-dependencies]
substrate-wasm-builder = { version = "5.0.0-dev", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.24" }
Expand Down
2 changes: 1 addition & 1 deletion runtime/cere/constants/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cere-runtime-constants"
version = "4.1.0"
version = "4.2.0"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion runtime/cere/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
// and set impl_version to 0. If only runtime
// implementation changes and behavior does not, then leave spec_version as
// is and increment impl_version.
spec_version: 30900,
spec_version: 42000,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 2,
Expand Down
2 changes: 1 addition & 1 deletion runtime/common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cere-runtime-common"
version = "4.1.0"
version = "4.2.0"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"

Expand Down

0 comments on commit ed75d19

Please sign in to comment.