Releasing 3.0 (#8098)

* bumping version for next release
* add changelog
* add guide
This commit is contained in:
Benjamin Kampmann
2021-02-10 19:23:18 +01:00
committed by GitHub
parent 772224c132
commit 6a964c5df0
200 changed files with 3140 additions and 1879 deletions
+15 -15
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-client-db"
version = "0.8.1"
version = "0.9.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
@@ -24,23 +24,23 @@ parity-util-mem = { version = "0.9.0", default-features = false, features = ["st
codec = { package = "parity-scale-codec", version = "2.0.0", features = ["derive"] }
blake2-rfc = "0.2.18"
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" }
sc-client-api = { version = "3.0.0", path = "../api" }
sp-arithmetic = { version = "3.0.0", path = "../../primitives/arithmetic" }
sp-core = { version = "3.0.0", path = "../../primitives/core" }
sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" }
sp-state-machine = { version = "0.9.0", path = "../../primitives/state-machine" }
sc-executor = { version = "0.9.0", path = "../executor" }
sc-state-db = { version = "0.9.0", path = "../state-db" }
sp-trie = { version = "3.0.0", path = "../../primitives/trie" }
sp-consensus = { version = "0.9.0", path = "../../primitives/consensus/common" }
sp-blockchain = { version = "3.0.0", path = "../../primitives/blockchain" }
sp-database = { version = "3.0.0", path = "../../primitives/database" }
parity-db = { version = "0.2.2", optional = true }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.8.0", path = "../../utils/prometheus" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.9.0", path = "../../utils/prometheus" }
[dev-dependencies]
sp-keyring = { version = "2.0.0", path = "../../primitives/keyring" }
sp-tracing = { version = "2.0.0", path = "../../primitives/tracing" }
sp-keyring = { version = "3.0.0", path = "../../primitives/keyring" }
sp-tracing = { version = "3.0.0", path = "../../primitives/tracing" }
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
quickcheck = "1.0.3"
kvdb-rocksdb = "0.11.0"