From b8159efcab6417d203c25f96560fc524883454ee Mon Sep 17 00:00:00 2001 From: Andrew Jones Date: Wed, 15 Apr 2020 09:40:14 +0100 Subject: [PATCH] Release v0.6.0 (#90) * Update to substrate alpha 6 * Bump version and add release notes * Upgrade async-std dev dependency * Fix readme license links --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 26 +++++++++++++------------- README.md | 4 +++- 3 files changed, 24 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 85408ef4b3..daebb62d49 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,3 +2,11 @@ - First release - All substrate dependencies upgraded to `alpha.5` + +# Version 0.6.0 (2020-04-15) + +- Raw extrinsic payloads in Client [#83](https://github.com/paritytech/substrate-subxt/pull/83) +- Custom extras [#89](https://github.com/paritytech/substrate-subxt/pull/89) +- Wrap and export BlockNumber [#87](https://github.com/paritytech/substrate-subxt/pull/87) +- All substrate dependencies upgraded to `alpha.6` + diff --git a/Cargo.toml b/Cargo.toml index a5af6e74e3..8448c19840 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "substrate-subxt" -version = "0.5.0" +version = "0.6.0" authors = ["Parity Technologies "] edition = "2018" @@ -24,20 +24,20 @@ serde_json = "1.0" url = "2.1" codec = { package = "parity-scale-codec", version = "1.2", default-features = false, features = ["derive", "full"] } -frame-metadata = { version = "11.0.0-alpha.5", package = "frame-metadata" } -frame-support = { version = "2.0.0-alpha.5", package = "frame-support" } -sp-runtime = { version = "2.0.0-alpha.5", package = "sp-runtime" } -sp-version = { version = "2.0.0-alpha.5", package = "sp-version" } -pallet-indices = { version = "2.0.0-alpha.5", package = "pallet-indices" } +frame-metadata = { version = "11.0.0-alpha.6", package = "frame-metadata" } +frame-support = { version = "2.0.0-alpha.6", package = "frame-support" } +sp-runtime = { version = "2.0.0-alpha.6", package = "sp-runtime" } +sp-version = { version = "2.0.0-alpha.6", package = "sp-version" } +pallet-indices = { version = "2.0.0-alpha.6", package = "pallet-indices" } hex = "0.4.0" -sp-rpc = { version = "2.0.0-alpha.5", package = "sp-rpc" } -sp-core = { version = "2.0.0-alpha.5", package = "sp-core" } -sp-transaction-pool = { version = "2.0.0-alpha.5", package = "sp-transaction-pool" } +sp-rpc = { version = "2.0.0-alpha.6", package = "sp-rpc" } +sp-core = { version = "2.0.0-alpha.6", package = "sp-core" } +sp-transaction-pool = { version = "2.0.0-alpha.6", package = "sp-transaction-pool" } [dev-dependencies] -async-std = "1.2.0" +async-std = "1.5.0" env_logger = "0.7" wabt = "0.9" -frame-system = { version = "2.0.0-alpha.5", package = "frame-system" } -pallet-balances = { version = "2.0.0-alpha.5", package = "pallet-balances" } -sp-keyring = { version = "2.0.0-alpha.5", package = "sp-keyring" } +frame-system = { version = "2.0.0-alpha.6", package = "frame-system" } +pallet-balances = { version = "2.0.0-alpha.6", package = "pallet-balances" } +sp-keyring = { version = "2.0.0-alpha.6", package = "sp-keyring" } diff --git a/README.md b/README.md index 65941d6959..711ad2bb6b 100644 --- a/README.md +++ b/README.md @@ -9,5 +9,7 @@ A library to **sub**mit e**xt**rinsics to a [substrate](https://github.com/parit #### License -The entire code within this repository is licensed under the [GPLv3](LICENSE). Please [contact us](https://www.parity.io/contact/) if you have questions about the licensing of our products. +The entire code within this repository is licensed under the GPLv3. +Please contact us if you have questions about the licensing of our + products.