Skip to content

Commit 5fd83f8

Browse files
authored
Release v0.9.0 (#129)
* Bump version, update changelog * Add client version
1 parent 7f08471 commit 5fd83f8

3 files changed

Lines changed: 15 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
1+
# Version 0.9.0 (2020-06-25)
2+
3+
* Events sub [#126](https://github.com/paritytech/substrate-subxt/pull/126)
4+
* Improve error handling in proc-macros, handle DispatchError etc. [#123](https://github.com/paritytech/substrate-subxt/pull/123)
5+
* Support embedded full/light node clients. [#91](https://github.com/paritytech/substrate-subxt/pull/91)
6+
* Zero sized types [#121](https://github.com/paritytech/substrate-subxt/pull/121)
7+
* Fix optional store items. [#120](https://github.com/paritytech/substrate-subxt/pull/120)
8+
* Make signing fallable and asynchronous [#119](https://github.com/paritytech/substrate-subxt/pull/119)
9+
110
# Version 0.8.0 (2020-05-26)
211

312
* Update to Substrate release candidate [#116](https://github.com/paritytech/substrate-subxt/pull/116)
4-
* Update to alpha.8 [#114](https://github.com/paritytech/substrate-subxt/pull/114)
13+
* Update to alpha.8 [#114]c
514
* Refactors the api [#113](https://github.com/paritytech/substrate-subxt/pull/113)
615

716
# Version 0.7.0 (2020-05-13)

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.8.0"
6+
version = "0.9.0"
77
authors = ["Parity Technologies <admin@parity.io>"]
88
edition = "2018"
99

@@ -40,8 +40,8 @@ sp-rpc = { version = "2.0.0-rc3", package = "sp-rpc" }
4040
sp-core = { version = "2.0.0-rc3", package = "sp-core" }
4141
sc-rpc-api = { version = "0.8.0-rc3", package = "sc-rpc-api" }
4242
sp-transaction-pool = { version = "2.0.0-rc3", package = "sp-transaction-pool" }
43-
substrate-subxt-client = { path = "client", optional = true }
44-
substrate-subxt-proc-macro = { version = "0.8.0", path = "proc-macro" }
43+
substrate-subxt-client = { version = "0.1.0", path = "client", optional = true }
44+
substrate-subxt-proc-macro = { version = "0.9.0", path = "proc-macro" }
4545

4646
[dev-dependencies]
4747
async-std = { version = "=1.5.0", features = ["attributes"] }
@@ -50,6 +50,6 @@ wabt = "0.9.2"
5050
frame-system = { version = "2.0.0-rc3", package = "frame-system" }
5151
pallet-balances = { version = "2.0.0-rc3", package = "pallet-balances" }
5252
sp-keyring = { version = "2.0.0-rc3", package = "sp-keyring" }
53-
substrate-subxt-client = { path = "client" }
53+
substrate-subxt-client = { version = "0.1.0", path = "client" }
5454
tempdir = "0.3.7"
5555
test-node = { path = "test-node" }

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.8.0"
3+
version = "0.9.0"
44
authors = ["David Craven <david@craven.ch>", "Parity Technologies <admin@parity.io>"]
55
edition = "2018"
66
autotests = false

0 commit comments

Comments
 (0)