Bump version to 1.0.0 globally (#2149)

* Bump versionb globally

* Rebuild and fix

* Rename fixes

* Rebuild

* Minor fix and code formatting for validator election

* Fix tests

* More test fixes

* Fix several bugs in phragmen elections.

* Rebuild, remove pointless closures
This commit is contained in:
Gav Wood
2019-04-01 15:16:06 +02:00
committed by GitHub
parent fbbd79e778
commit eca163ba64
89 changed files with 1626 additions and 1652 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "substrate-executor"
version = "0.1.0"
version = "1.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
+13 -13
View File
@@ -108,11 +108,11 @@ dependencies = [
[[package]]
name = "runtime-test"
version = "0.1.0"
version = "1.0.0"
dependencies = [
"sr-io 0.1.0",
"sr-sandbox 0.1.0",
"substrate-primitives 0.1.0",
"sr-io 1.0.0",
"sr-sandbox 1.0.0",
"substrate-primitives 1.0.0",
]
[[package]]
@@ -148,28 +148,28 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "sr-io"
version = "0.1.0"
version = "1.0.0"
dependencies = [
"hash-db 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)",
"parity-codec 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
"rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
"sr-std 0.1.0",
"substrate-primitives 0.1.0",
"sr-std 1.0.0",
"substrate-primitives 1.0.0",
]
[[package]]
name = "sr-sandbox"
version = "0.1.0"
version = "1.0.0"
dependencies = [
"parity-codec 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
"rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
"sr-std 0.1.0",
"substrate-primitives 0.1.0",
"sr-std 1.0.0",
"substrate-primitives 1.0.0",
]
[[package]]
name = "sr-std"
version = "0.1.0"
version = "1.0.0"
dependencies = [
"rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
]
@@ -181,7 +181,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "substrate-primitives"
version = "0.1.0"
version = "1.0.0"
dependencies = [
"byteorder 1.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
"hash-db 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -189,7 +189,7 @@ dependencies = [
"parity-codec 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
"primitive-types 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
"rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"sr-std 0.1.0",
"sr-std 1.0.0",
]
[[package]]
+3 -3
View File
@@ -1,6 +1,6 @@
[package]
name = "runtime-test"
version = "0.1.0"
version = "1.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
@@ -8,8 +8,8 @@ edition = "2018"
crate-type = ["cdylib"]
[dependencies]
runtime_io = { package = "sr-io", path = "../../sr-io", version = "0.1", default-features = false }
sandbox = { package = "sr-sandbox", path = "../../sr-sandbox", version = "0.1", default-features = false }
runtime_io = { package = "sr-io", path = "../../sr-io", default-features = false }
sandbox = { package = "sr-sandbox", path = "../../sr-sandbox", default-features = false }
substrate-primitives = { path = "../../primitives", default-features = false }
[profile.release]