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

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
gavofyork committed Jul 31, 2018
1 parent ef39829 commit f1c682a
Show file tree
Hide file tree
Showing 9 changed files with 27 additions and 27 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.0"
version = "0.2.1"
authors = ["Parity Technologies <[email protected]>"]
build = "build.rs"

Expand Down
2 changes: 1 addition & 1 deletion README.adoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
= Polkadot
:Author: Polkadot developers
:Revision: 0.2.0
:Revision: 0.2.1
:toc:
:sectnums:

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.0"
version = "0.2.1"
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.0"
version = "0.2.1"
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.0"
version = "0.2.1"
authors = ["Parity Technologies <[email protected]>"]
description = "Substrate CLI interface."
build = "build.rs"
Expand Down
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.0".into())
Ok("0.2.1".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.0".to_owned()
"0.2.1".to_owned()
);
}

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.0"
version = "0.2.1"
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.0"
version = "0.2.1"
authors = ["Parity Technologies <[email protected]>"]
description = "Telemetry utils"

Expand Down

0 comments on commit f1c682a

Please sign in to comment.