Skip to content

Commit 26c6737

Browse files
authored
Releasing 2.0 – two dot 😮 (#7182)
Tagging the release of substrate 2.0 [ci: skip-checks]
1 parent 88521e3 commit 26c6737

File tree

3 files changed

+22
-22
lines changed

3 files changed

+22
-22
lines changed

Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pallet-transaction-payment"
3-
version = "2.0.0-rc6"
3+
version = "2.0.0"
44
authors = ["Parity Technologies <[email protected]>"]
55
edition = "2018"
66
license = "Apache-2.0"
@@ -15,18 +15,18 @@ targets = ["x86_64-unknown-linux-gnu"]
1515
[dependencies]
1616
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
1717
serde = { version = "1.0.101", optional = true }
18-
sp-std = { version = "2.0.0-rc6", default-features = false, path = "../../primitives/std" }
19-
sp-runtime = { version = "2.0.0-rc6", default-features = false, path = "../../primitives/runtime" }
20-
frame-support = { version = "2.0.0-rc6", default-features = false, path = "../support" }
21-
frame-system = { version = "2.0.0-rc6", default-features = false, path = "../system" }
22-
pallet-transaction-payment-rpc-runtime-api = { version = "2.0.0-rc6", default-features = false, path = "./rpc/runtime-api" }
18+
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" }
19+
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" }
20+
frame-support = { version = "2.0.0", default-features = false, path = "../support" }
21+
frame-system = { version = "2.0.0", default-features = false, path = "../system" }
22+
pallet-transaction-payment-rpc-runtime-api = { version = "2.0.0", default-features = false, path = "./rpc/runtime-api" }
2323
smallvec = "1.4.1"
24-
sp-io = { version = "2.0.0-rc6", path = "../../primitives/io", default-features = false }
25-
sp-core = { version = "2.0.0-rc6", path = "../../primitives/core", default-features = false }
24+
sp-io = { version = "2.0.0", path = "../../primitives/io", default-features = false }
25+
sp-core = { version = "2.0.0", path = "../../primitives/core", default-features = false }
2626

2727
[dev-dependencies]
28-
pallet-balances = { version = "2.0.0-rc6", path = "../balances" }
29-
sp-storage = { version = "2.0.0-rc6", path = "../../primitives/storage" }
28+
pallet-balances = { version = "2.0.0", path = "../balances" }
29+
sp-storage = { version = "2.0.0", path = "../../primitives/storage" }
3030

3131
[features]
3232
default = ["std"]

rpc/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pallet-transaction-payment-rpc"
3-
version = "2.0.0-rc6"
3+
version = "2.0.0"
44
authors = ["Parity Technologies <[email protected]>"]
55
edition = "2018"
66
license = "Apache-2.0"
@@ -17,10 +17,10 @@ codec = { package = "parity-scale-codec", version = "1.3.1" }
1717
jsonrpc-core = "15.0.0"
1818
jsonrpc-core-client = "15.0.0"
1919
jsonrpc-derive = "15.0.0"
20-
sp-core = { version = "2.0.0-rc6", path = "../../../primitives/core" }
21-
sp-rpc = { version = "2.0.0-rc6", path = "../../../primitives/rpc" }
20+
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
21+
sp-rpc = { version = "2.0.0", path = "../../../primitives/rpc" }
2222
serde = { version = "1.0.101", features = ["derive"] }
23-
sp-runtime = { version = "2.0.0-rc6", path = "../../../primitives/runtime" }
24-
sp-api = { version = "2.0.0-rc6", path = "../../../primitives/api" }
25-
sp-blockchain = { version = "2.0.0-rc6", path = "../../../primitives/blockchain" }
26-
pallet-transaction-payment-rpc-runtime-api = { version = "2.0.0-rc6", path = "./runtime-api" }
23+
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" }
24+
sp-api = { version = "2.0.0", path = "../../../primitives/api" }
25+
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" }
26+
pallet-transaction-payment-rpc-runtime-api = { version = "2.0.0", path = "./runtime-api" }

rpc/runtime-api/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pallet-transaction-payment-rpc-runtime-api"
3-
version = "2.0.0-rc6"
3+
version = "2.0.0"
44
authors = ["Parity Technologies <[email protected]>"]
55
edition = "2018"
66
license = "Apache-2.0"
@@ -14,11 +14,11 @@ targets = ["x86_64-unknown-linux-gnu"]
1414

1515
[dependencies]
1616
serde = { version = "1.0.101", optional = true, features = ["derive"] }
17-
sp-api = { version = "2.0.0-rc6", default-features = false, path = "../../../../primitives/api" }
17+
sp-api = { version = "2.0.0", default-features = false, path = "../../../../primitives/api" }
1818
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
19-
sp-std = { version = "2.0.0-rc6", default-features = false, path = "../../../../primitives/std" }
20-
sp-runtime = { version = "2.0.0-rc6", default-features = false, path = "../../../../primitives/runtime" }
21-
frame-support = { version = "2.0.0-rc6", default-features = false, path = "../../../support" }
19+
sp-std = { version = "2.0.0", default-features = false, path = "../../../../primitives/std" }
20+
sp-runtime = { version = "2.0.0", default-features = false, path = "../../../../primitives/runtime" }
21+
frame-support = { version = "2.0.0", default-features = false, path = "../../../support" }
2222

2323
[dev-dependencies]
2424
serde_json = "1.0.41"

0 commit comments

Comments
 (0)