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

Commit c8a4adf

Browse files
committed
Bump version.
1 parent 00c925c commit c8a4adf

File tree

10 files changed

+28
-28
lines changed

10 files changed

+28
-28
lines changed

Cargo.lock

+18-18
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 = "polkadot/src/main.rs"
44

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

polkadot/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.2.1"
3+
version = "0.2.2"
44
authors = ["Parity Technologies <[email protected]>"]
55
description = "Polkadot node implementation in Rust."
66

polkadot/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.2.1"
3+
version = "0.2.2"
44
authors = ["Parity Technologies <[email protected]>"]
55

66
[dependencies]

substrate/cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "substrate-cli"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
authors = ["Parity Technologies <[email protected]>"]
55
description = "Substrate CLI interface."
66
build = "build.rs"

substrate/executor/wasm/Cargo.lock

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

substrate/rpc/src/system/tests.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ impl SystemApi for () {
2222
Ok("testclient".into())
2323
}
2424
fn system_version(&self) -> Result<String> {
25-
Ok("0.2.1".into())
25+
Ok("0.2.2".into())
2626
}
2727
fn system_chain(&self) -> Result<String> {
2828
Ok("testchain".into())
@@ -41,7 +41,7 @@ fn system_name_works() {
4141
fn system_version_works() {
4242
assert_eq!(
4343
SystemApi::system_version(&()).unwrap(),
44-
"0.2.1".to_owned()
44+
"0.2.2".to_owned()
4545
);
4646
}
4747

substrate/runtime/democracy/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ impl<T: Trait> Module<T> {
170170
Ok(())
171171
}
172172

173-
/// Propose a sensitive action to be taken.
173+
/// Sponsor a proposed sensitive action to be taken.
174174
fn second(aux: &T::PublicAux, proposal: PropIndex) -> Result {
175175
let mut deposit = Self::deposit_of(proposal)
176176
.ok_or("can only second an existing proposal")?;

substrate/service/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "substrate-service"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
authors = ["Parity Technologies <[email protected]>"]
55

66
[dependencies]

substrate/telemetry/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "substrate-telemetry"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
authors = ["Parity Technologies <[email protected]>"]
55
description = "Telemetry utils"
66

0 commit comments

Comments
 (0)