From c93183262926f0c18d6d73aa46d200c4b6d4fe2b Mon Sep 17 00:00:00 2001 From: Andrew Jones Date: Thu, 25 Jun 2020 08:24:52 +0100 Subject: [PATCH 1/2] Bump version, update changelog --- CHANGELOG.md | 11 ++++++++++- Cargo.toml | 4 ++-- proc-macro/Cargo.toml | 2 +- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ba4cc4058..da102618d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,16 @@ +# Version 0.9.0 (2020-06-25) + +* Events sub [#126](https://github.com/paritytech/substrate-subxt/pull/126) +* Improve error handling in proc-macros, handle DispatchError etc. [#123](https://github.com/paritytech/substrate-subxt/pull/123) +* Support embedded full/light node clients. [#91](https://github.com/paritytech/substrate-subxt/pull/91) +* Zero sized types [#121](https://github.com/paritytech/substrate-subxt/pull/121) +* Fix optional store items. [#120](https://github.com/paritytech/substrate-subxt/pull/120) +* Make signing fallable and asynchronous [#119](https://github.com/paritytech/substrate-subxt/pull/119) + # Version 0.8.0 (2020-05-26) * Update to Substrate release candidate [#116](https://github.com/paritytech/substrate-subxt/pull/116) -* Update to alpha.8 [#114](https://github.com/paritytech/substrate-subxt/pull/114) +* Update to alpha.8 [#114]c * Refactors the api [#113](https://github.com/paritytech/substrate-subxt/pull/113) # Version 0.7.0 (2020-05-13) diff --git a/Cargo.toml b/Cargo.toml index 43aba9b02c..aee5c9cd87 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = [".", "client", "proc-macro", "test-node"] [package] name = "substrate-subxt" -version = "0.8.0" +version = "0.9.0" authors = ["Parity Technologies "] edition = "2018" @@ -41,7 +41,7 @@ sp-core = { version = "2.0.0-rc3", package = "sp-core" } sc-rpc-api = { version = "0.8.0-rc3", package = "sc-rpc-api" } sp-transaction-pool = { version = "2.0.0-rc3", package = "sp-transaction-pool" } substrate-subxt-client = { path = "client", optional = true } -substrate-subxt-proc-macro = { version = "0.8.0", path = "proc-macro" } +substrate-subxt-proc-macro = { version = "0.9.0", path = "proc-macro" } [dev-dependencies] async-std = { version = "=1.5.0", features = ["attributes"] } diff --git a/proc-macro/Cargo.toml b/proc-macro/Cargo.toml index fb3c0b09d7..0a6d6d983a 100644 --- a/proc-macro/Cargo.toml +++ b/proc-macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "substrate-subxt-proc-macro" -version = "0.8.0" +version = "0.9.0" authors = ["David Craven ", "Parity Technologies "] edition = "2018" autotests = false From 9aefff754ae9bb4b61a581c817a20b434c715ff5 Mon Sep 17 00:00:00 2001 From: Andrew Jones Date: Thu, 25 Jun 2020 08:45:17 +0100 Subject: [PATCH 2/2] Add client version --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index aee5c9cd87..68164b77dc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,7 @@ sp-rpc = { version = "2.0.0-rc3", package = "sp-rpc" } sp-core = { version = "2.0.0-rc3", package = "sp-core" } sc-rpc-api = { version = "0.8.0-rc3", package = "sc-rpc-api" } sp-transaction-pool = { version = "2.0.0-rc3", package = "sp-transaction-pool" } -substrate-subxt-client = { path = "client", optional = true } +substrate-subxt-client = { version = "0.1.0", path = "client", optional = true } substrate-subxt-proc-macro = { version = "0.9.0", path = "proc-macro" } [dev-dependencies] @@ -50,6 +50,6 @@ wabt = "0.9.2" frame-system = { version = "2.0.0-rc3", package = "frame-system" } pallet-balances = { version = "2.0.0-rc3", package = "pallet-balances" } sp-keyring = { version = "2.0.0-rc3", package = "sp-keyring" } -substrate-subxt-client = { path = "client" } +substrate-subxt-client = { version = "0.1.0", path = "client" } tempdir = "0.3.7" test-node = { path = "test-node" }