Skip to content

Commit d3e7bd2

Browse files
authored
Release v0.11.0 (#145)
* Bump versions * Update changelog * Update PR links * Fix changelog linebreak * Remove explicit wabt-sys dependency * Update changelog * Update parity-scale-codec version
1 parent cb23cb2 commit d3e7bd2

File tree

5 files changed

+19
-10
lines changed

5 files changed

+19
-10
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# Version 0.11.0
2+
3+
* Fix build error, wabt 0.9.2 is yanked [#146](https://github.com/paritytech/substrate-subxt/pull/146)
4+
* Rc5 [#143](https://github.com/paritytech/substrate-subxt/pull/143)
5+
* Refactor: extract functions and types for creating extrinsics [#138](https://github.com/paritytech/substrate-subxt/pull/138)
6+
* event subscription example [#140](https://github.com/paritytech/substrate-subxt/pull/140)
7+
* Document the `Call` derive macro [#137](https://github.com/paritytech/substrate-subxt/pull/137)
8+
* Document the #[module] macro [#135](https://github.com/paritytech/substrate-subxt/pull/135)
9+
* Support authors api. [#134](https://github.com/paritytech/substrate-subxt/pull/134)
10+
111
# Version 0.10.1 (2020-06-19)
212

313
* Release client v0.2.0 [#133](https://github.com/paritytech/substrate-subxt/pull/133)

Cargo.toml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = [".", "client", "proc-macro", "test-node"]
33

44
[package]
55
name = "substrate-subxt"
6-
version = "0.10.1"
6+
version = "0.11.0"
77
authors = ["Parity Technologies <admin@parity.io>"]
88
edition = "2018"
99

@@ -28,7 +28,7 @@ num-traits = { version = "0.2.12", default-features = false }
2828
serde = { version = "1.0.114", features = ["derive"] }
2929
serde_json = "1.0.56"
3030
url = "2.1.1"
31-
codec = { package = "parity-scale-codec", version = "1.3", default-features = false, features = ["derive", "full"] }
31+
codec = { package = "parity-scale-codec", version = "1.3.4", default-features = false, features = ["derive", "full"] }
3232

3333
frame-metadata = { version = "11.0.0-rc5", package = "frame-metadata" }
3434
frame-support = { version = "2.0.0-rc5", package = "frame-support" }
@@ -40,17 +40,16 @@ sp-rpc = { version = "2.0.0-rc5", package = "sp-rpc" }
4040
sp-core = { version = "2.0.0-rc5", package = "sp-core" }
4141
sc-rpc-api = { version = "0.8.0-rc5", package = "sc-rpc-api" }
4242
sp-transaction-pool = { version = "2.0.0-rc5", package = "sp-transaction-pool" }
43-
substrate-subxt-client = { version = "0.2.0", path = "client", optional = true }
44-
substrate-subxt-proc-macro = { version = "0.9.0", path = "proc-macro" }
43+
substrate-subxt-client = { version = "0.3.0", path = "client", optional = true }
44+
substrate-subxt-proc-macro = { version = "0.11.0", path = "proc-macro" }
4545

4646
[dev-dependencies]
4747
async-std = { version = "1.6.2", features = ["attributes"] }
4848
env_logger = "0.7.1"
4949
frame-system = { version = "2.0.0-rc5", package = "frame-system" }
5050
pallet-balances = { version = "2.0.0-rc5", package = "pallet-balances" }
5151
sp-keyring = { version = "2.0.0-rc5", package = "sp-keyring" }
52-
substrate-subxt-client = { version = "0.2.0", path = "client" }
52+
substrate-subxt-client = { version = "0.3.0", path = "client" }
5353
tempdir = "0.3.7"
5454
test-node = { path = "test-node" }
5555
wabt = "0.10.0"
56-
wabt-sys = "0.8.0"

client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "substrate-subxt-client"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
authors = ["David Craven <david@craven.ch>", "Parity Technologies <admin@parity.io>"]
55
edition = "2018"
66

proc-macro/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "substrate-subxt-proc-macro"
3-
version = "0.9.0"
3+
version = "0.11.0"
44
authors = ["David Craven <david@craven.ch>", "Parity Technologies <admin@parity.io>"]
55
edition = "2018"
66
autotests = false
@@ -25,7 +25,7 @@ synstructure = "0.12.4"
2525

2626
[dev-dependencies]
2727
async-std = { version = "1.6.2", features = ["attributes"] }
28-
codec = { package = "parity-scale-codec", version = "1.3.0", features = ["derive"] }
28+
codec = { package = "parity-scale-codec", version = "1.3.4", features = ["derive"] }
2929
env_logger = "0.7.1"
3030
pretty_assertions = "0.6.1"
3131
sp-keyring = "2.0.0-rc5"

test-node/runtime/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ repository = "https://github.com/paritytech/substrate/"
1111
targets = ["x86_64-unknown-linux-gnu"]
1212

1313
[dependencies]
14-
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
14+
codec = { package = "parity-scale-codec", version = "1.3.4", default-features = false, features = ["derive"] }
1515

1616
aura = { version = "2.0.0-rc5", default-features = false, package = "pallet-aura" }
1717
balances = { version = "2.0.0-rc5", default-features = false, package = "pallet-balances" }

0 commit comments

Comments
 (0)