Skip to content

Commit

Permalink
Release v0.6.0 (#90)
Browse files Browse the repository at this point in the history
* Update to substrate alpha 6

* Bump version and add release notes

* Upgrade async-std dev dependency

* Fix readme license links
  • Loading branch information
ascjones authored Apr 15, 2020
1 parent dc2a73d commit b8159ef
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 14 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`

26 changes: 13 additions & 13 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "substrate-subxt"
version = "0.5.0"
version = "0.6.0"
authors = ["Parity Technologies <[email protected]>"]
edition = "2018"

Expand All @@ -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" }
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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>

0 comments on commit b8159ef

Please sign in to comment.