Skip to content

Commit 032ba02

Browse files
authored
Release v0.14.0 (#226)
* Update CHANGELOG * Bump versions * Update client dep versions
1 parent f3ece6d commit 032ba02

File tree

4 files changed

+19
-6
lines changed

4 files changed

+19
-6
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
# Version 0.14.0 (2021-02-05)
2+
* Refactor event type decoding and declaration [#221](https://github.com/paritytech/substrate-subxt/pull/221)
3+
* Add Balances Locks [#197](https://github.com/paritytech/substrate-subxt/pull/197)
4+
* Add event Phase::Initialization [#215](https://github.com/paritytech/substrate-subxt/pull/215)
5+
* Make type explicit [#217](https://github.com/paritytech/substrate-subxt/pull/217)
6+
* Upgrade dependencies, bumps substrate to 2.0.1 [#219](https://github.com/paritytech/substrate-subxt/pull/219)
7+
* Export extra types [#212](https://github.com/paritytech/substrate-subxt/pull/212)
8+
* Enable retrieval of constants from rutnime metadata [#207](https://github.com/paritytech/substrate-subxt/pull/207)
9+
* register type sizes for u64 and u128 [#200](https://github.com/paritytech/substrate-subxt/pull/200)
10+
* Remove some substrate dependencies to improve compile time [#194](https://github.com/paritytech/substrate-subxt/pull/194)
11+
* propagate 'RuntimeError's to 'decode_raw_bytes' caller [#189](https://github.com/paritytech/substrate-subxt/pull/189)
12+
* Derive `Clone` for `PairSigner` [#184](https://github.com/paritytech/substrate-subxt/pull/184)
13+
114
# Version 0.13.0
215
* Make the contract call extrinsic work [#165](https://github.com/paritytech/substrate-subxt/pull/165)
316
* Update to Substrate 2.0.0 [#173](https://github.com/paritytech/substrate-subxt/pull/173)

Cargo.toml

Lines changed: 4 additions & 4 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.13.0"
6+
version = "0.14.0"
77
authors = ["Parity Technologies <[email protected]>"]
88
edition = "2018"
99

@@ -46,16 +46,16 @@ pallet-staking = "2.0.1"
4646

4747
sp-rpc = { version = "2.0.1", package = "sp-rpc" }
4848
sp-core = { version = "2.0.1", package = "sp-core" }
49-
substrate-subxt-client = { version = "0.5.0", path = "client", optional = true }
50-
substrate-subxt-proc-macro = { version = "0.13.0", path = "proc-macro" }
49+
substrate-subxt-client = { version = "0.6.0", path = "client", optional = true }
50+
substrate-subxt-proc-macro = { version = "0.14.0", path = "proc-macro" }
5151

5252
[dev-dependencies]
5353
async-std = { version = "1.8.0", features = ["attributes"] }
5454
env_logger = "0.8.2"
5555
frame-system = "2.0.1"
5656
pallet-balances = "2.0.1"
5757
sp-keyring = "2.0.1"
58-
substrate-subxt-client = { version = "0.5.0", path = "client" }
58+
substrate-subxt-client = { version = "0.6.0", path = "client" }
5959
tempdir = "0.3.7"
6060
test-node = { path = "test-node" }
6161
wabt = "0.10.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.5.0"
3+
version = "0.6.0"
44
authors = ["David Craven <[email protected]>", "Parity Technologies <[email protected]>"]
55
edition = "2018"
66

proc-macro/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-proc-macro"
3-
version = "0.13.0"
3+
version = "0.14.0"
44
authors = ["David Craven <[email protected]>", "Parity Technologies <[email protected]>"]
55
edition = "2018"
66
autotests = false

0 commit comments

Comments
 (0)