Releasing 2.0 – two dot 😮 (#7182)

Tagging the release of substrate 2.0


[ci: skip-checks]
This commit is contained in:
Benjamin Kampmann
2020-09-22 19:47:38 +02:00
committed by GitHub
parent cbf1a282b5
commit ecdc94420e
190 changed files with 1977 additions and 1920 deletions
+16 -16
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-client-db"
version = "0.8.0-rc6"
version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
@@ -24,24 +24,24 @@ parity-util-mem = { version = "0.7.0", default-features = false, features = ["st
codec = { package = "parity-scale-codec", version = "1.3.4", features = ["derive"] }
blake2-rfc = "0.2.18"
sc-client-api = { version = "2.0.0-rc6", path = "../api" }
sp-arithmetic = { version = "2.0.0-rc6", path = "../../primitives/arithmetic" }
sp-core = { version = "2.0.0-rc6", path = "../../primitives/core" }
sp-runtime = { version = "2.0.0-rc6", path = "../../primitives/runtime" }
sp-state-machine = { version = "0.8.0-rc6", path = "../../primitives/state-machine" }
sc-executor = { version = "0.8.0-rc6", path = "../executor" }
sc-state-db = { version = "0.8.0-rc6", path = "../state-db" }
sp-trie = { version = "2.0.0-rc6", path = "../../primitives/trie" }
sp-consensus = { version = "0.8.0-rc6", path = "../../primitives/consensus/common" }
sp-blockchain = { version = "2.0.0-rc6", path = "../../primitives/blockchain" }
sp-database = { version = "2.0.0-rc6", path = "../../primitives/database" }
sc-client-api = { version = "2.0.0", path = "../api" }
sp-arithmetic = { version = "2.0.0", path = "../../primitives/arithmetic" }
sp-core = { version = "2.0.0", path = "../../primitives/core" }
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
sp-state-machine = { version = "0.8.0", path = "../../primitives/state-machine" }
sc-executor = { version = "0.8.0", path = "../executor" }
sc-state-db = { version = "0.8.0", path = "../state-db" }
sp-trie = { version = "2.0.0", path = "../../primitives/trie" }
sp-consensus = { version = "0.8.0", path = "../../primitives/consensus/common" }
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" }
sp-database = { version = "2.0.0", path = "../../primitives/database" }
parity-db = { version = "0.1.2", optional = true }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.8.0-rc6", path = "../../utils/prometheus" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.8.0", path = "../../utils/prometheus" }
[dev-dependencies]
sp-keyring = { version = "2.0.0-rc6", path = "../../primitives/keyring" }
sp-tracing = { version = "2.0.0-rc6", path = "../../primitives/tracing" }
substrate-test-runtime-client = { version = "2.0.0-rc6", path = "../../test-utils/runtime/client" }
sp-keyring = { version = "2.0.0", path = "../../primitives/keyring" }
sp-tracing = { version = "2.0.0", path = "../../primitives/tracing" }
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
quickcheck = "0.9"
kvdb-rocksdb = "0.9.1"
tempfile = "3"