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

Commit

Permalink
Bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
gavofyork committed Aug 1, 2018
1 parent 00c925c commit c8a4adf
Show file tree
Hide file tree
Showing 10 changed files with 28 additions and 28 deletions.
36 changes: 18 additions & 18 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 @@ -4,7 +4,7 @@ path = "polkadot/src/main.rs"

[package]
name = "polkadot"
version = "0.2.1"
version = "0.2.2"
authors = ["Parity Technologies <[email protected]>"]
build = "build.rs"

Expand Down
2 changes: 1 addition & 1 deletion polkadot/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "polkadot-cli"
version = "0.2.1"
version = "0.2.2"
authors = ["Parity Technologies <[email protected]>"]
description = "Polkadot node implementation in Rust."

Expand Down
2 changes: 1 addition & 1 deletion polkadot/service/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "polkadot-service"
version = "0.2.1"
version = "0.2.2"
authors = ["Parity Technologies <[email protected]>"]

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion substrate/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "substrate-cli"
version = "0.2.1"
version = "0.2.2"
authors = ["Parity Technologies <[email protected]>"]
description = "Substrate CLI interface."
build = "build.rs"
Expand Down
2 changes: 1 addition & 1 deletion substrate/executor/wasm/Cargo.lock

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

4 changes: 2 additions & 2 deletions substrate/rpc/src/system/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ impl SystemApi for () {
Ok("testclient".into())
}
fn system_version(&self) -> Result<String> {
Ok("0.2.1".into())
Ok("0.2.2".into())
}
fn system_chain(&self) -> Result<String> {
Ok("testchain".into())
Expand All @@ -41,7 +41,7 @@ fn system_name_works() {
fn system_version_works() {
assert_eq!(
SystemApi::system_version(&()).unwrap(),
"0.2.1".to_owned()
"0.2.2".to_owned()
);
}

Expand Down
2 changes: 1 addition & 1 deletion substrate/runtime/democracy/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ impl<T: Trait> Module<T> {
Ok(())
}

/// Propose a sensitive action to be taken.
/// Sponsor a proposed sensitive action to be taken.
fn second(aux: &T::PublicAux, proposal: PropIndex) -> Result {
let mut deposit = Self::deposit_of(proposal)
.ok_or("can only second an existing proposal")?;
Expand Down
2 changes: 1 addition & 1 deletion substrate/service/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "substrate-service"
version = "0.2.1"
version = "0.2.2"
authors = ["Parity Technologies <[email protected]>"]

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion substrate/telemetry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "substrate-telemetry"
version = "0.2.1"
version = "0.2.2"
authors = ["Parity Technologies <[email protected]>"]
description = "Telemetry utils"

Expand Down

0 comments on commit c8a4adf

Please sign in to comment.