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
This commit is contained in:
Andrew Jones
2020-04-15 09:40:14 +01:00
committed by GitHub
parent dc2a73dc4a
commit b8159efcab
3 changed files with 24 additions and 14 deletions
+8
View File
@@ -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`
+13 -13
View File
@@ -1,6 +1,6 @@
[package]
name = "substrate-subxt"
version = "0.5.0"
version = "0.6.0"
authors = ["Parity Technologies <admin@parity.io>"]
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" }
+3 -1
View File
@@ -9,5 +9,7 @@ A library to **sub**mit e**xt**rinsics to a [substrate](https://github.com/parit
#### License
<sup>
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 <a href="LICENSE">GPLv3</a>.
Please <a href="https://www.parity.io/contact/">contact us</a> if you have questions about the licensing of our
products.
</sup>