Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.

Commit 1e6c88b

Browse files
authored
Bump Substrate and versions (#531)
* Bump versions * Build fix.
1 parent ccd1c6e commit 1e6c88b

File tree

19 files changed

+171
-176
lines changed

19 files changed

+171
-176
lines changed

Cargo.lock

+153-158
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ path = "src/main.rs"
44

55
[package]
66
name = "polkadot"
7-
version = "0.6.6"
7+
version = "0.6.7"
88
authors = ["Parity Technologies <[email protected]>"]
99
build = "build.rs"
1010
edition = "2018"

availability-store/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "polkadot-availability-store"
33
description = "Persistent database for parachain data"
4-
version = "0.6.6"
4+
version = "0.6.7"
55
authors = ["Parity Technologies <[email protected]>"]
66
edition = "2018"
77

cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "polkadot-cli"
3-
version = "0.6.6"
3+
version = "0.6.7"
44
authors = ["Parity Technologies <[email protected]>"]
55
description = "Polkadot node implementation in Rust."
66
edition = "2018"

cli/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ pub fn run<W>(worker: W, version: cli::VersionInfo) -> error::Result<()> where
115115
),
116116
}.map_err(|e| format!("{:?}", e))
117117
}),
118-
cli::ParseAndPrepare::BuildSpec(cmd) => cmd.run(load_spec),
118+
cli::ParseAndPrepare::BuildSpec(cmd) => cmd.run::<NoCustom, _, _, _>(load_spec),
119119
cli::ParseAndPrepare::ExportBlocks(cmd) => cmd.run_with_builder::<(), _, _, _, _, _, _>(|config|
120120
Ok(service::new_chain_ops(config)?), load_spec, worker),
121121
cli::ParseAndPrepare::ImportBlocks(cmd) => cmd.run_with_builder::<(), _, _, _, _, _, _>(|config|

collator/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "polkadot-collator"
3-
version = "0.6.6"
3+
version = "0.6.7"
44
authors = ["Parity Technologies <[email protected]>"]
55
description = "Collator node implementation"
66
edition = "2018"

erasure-coding/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "polkadot-erasure-coding"
3-
version = "0.6.6"
3+
version = "0.6.7"
44
authors = ["Parity Technologies <[email protected]>"]
55
edition = "2018"
66

executor/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "polkadot-executor"
3-
version = "0.6.6"
3+
version = "0.6.7"
44
authors = ["Parity Technologies <[email protected]>"]
55
description = "Polkadot node implementation in Rust."
66
edition = "2018"

network/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "polkadot-network"
3-
version = "0.6.6"
3+
version = "0.6.7"
44
authors = ["Parity Technologies <[email protected]>"]
55
description = "Polkadot-specific networking protocol"
66
edition = "2018"

parachain/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "polkadot-parachain"
3-
version = "0.6.6"
3+
version = "0.6.7"
44
authors = ["Parity Technologies <[email protected]>"]
55
description = "Types and utilities for creating and working with parachains"
66
edition = "2018"

primitives/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "polkadot-primitives"
3-
version = "0.6.6"
3+
version = "0.6.7"
44
authors = ["Parity Technologies <[email protected]>"]
55
edition = "2018"
66

rpc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "polkadot-rpc"
3-
version = "0.6.6"
3+
version = "0.6.7"
44
authors = ["Parity Technologies <[email protected]>"]
55
edition = "2018"
66

runtime/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "polkadot-runtime"
3-
version = "0.6.6"
3+
version = "0.6.7"
44
authors = ["Parity Technologies <[email protected]>"]
55
edition = "2018"
66
build = "build.rs"

runtime/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
9999
spec_name: create_runtime_str!("kusama"),
100100
impl_name: create_runtime_str!("parity-kusama"),
101101
authoring_version: 1,
102-
spec_version: 1012,
102+
spec_version: 1013,
103103
impl_version: 0,
104104
apis: RUNTIME_API_VERSIONS,
105105
};

service/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "polkadot-service"
3-
version = "0.6.6"
3+
version = "0.6.7"
44
authors = ["Parity Technologies <[email protected]>"]
55
edition = "2018"
66

statement-table/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "polkadot-statement-table"
3-
version = "0.6.6"
3+
version = "0.6.7"
44
authors = ["Parity Technologies <[email protected]>"]
55
edition = "2018"
66

test-parachains/adder/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "adder"
3-
version = "0.6.6"
3+
version = "0.6.7"
44
authors = ["Parity Technologies <[email protected]>"]
55
description = "Test parachain which adds to a number as its state transition"
66
edition = "2018"

test-parachains/halt/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "halt"
3-
version = "0.6.6"
3+
version = "0.6.7"
44
authors = ["Parity Technologies <[email protected]>"]
55
description = "Test parachain which executes forever"
66
edition = "2018"

validation/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "polkadot-validation"
3-
version = "0.6.6"
3+
version = "0.6.7"
44
authors = ["Parity Technologies <[email protected]>"]
55
edition = "2018"
66

0 commit comments

Comments
 (0)