-
Notifications
You must be signed in to change notification settings - Fork 262
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release preparation for v0.17.0 #434
Changes from 8 commits
ac67e1b
d143ec4
cc3af9e
f474063
82b689b
80af19c
090f7f9
bcbb82b
cfcb30a
1fb222f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 | |
|
||
## [Unreleased] | ||
|
||
## [0.17.0] - 2022-02-04 | ||
|
||
### Added | ||
|
||
- Get event context on EventSubscription ([#423](https://github.com/paritytech/subxt/pull/423)) | ||
|
||
### Changed | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. isn't the jsonrpsee change missing from here or excluded from the release? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ah good catch! The default sort order of PRs is annoying; perhaps it's worth noting in the release doc to filter by Everything else looks good I think; just that one that's missing because it's a fairly old PR There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yupp, makes sense |
||
|
||
- Add more tests for events.rs/decode_and_consume_type ([#430](https://github.com/paritytech/subxt/pull/430)) | ||
- Update substrate dependencies ([#429](https://github.com/paritytech/subxt/pull/429)) | ||
- export RuntimeError struct ([#427](https://github.com/paritytech/subxt/pull/427)) | ||
- remove unused PalletError struct ([#425](https://github.com/paritytech/subxt/pull/425)) | ||
- Move Subxt crate into a subfolder ([#424](https://github.com/paritytech/subxt/pull/424)) | ||
- Add release checklist ([#418](https://github.com/paritytech/subxt/pull/418)) | ||
|
||
## [0.16.0] - 2022-02-01 | ||
|
||
*Note*: This is a significant release which introduces support for V14 metadata and macro based codegen, as well as making many breaking changes to the API. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "subxt-cli" | ||
version = "0.16.0" | ||
version = "0.17.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
@@ -16,7 +16,7 @@ path = "src/main.rs" | |
|
||
[dependencies] | ||
# perform subxt codegen | ||
subxt-codegen = { version = "0.16.0", path = "../codegen" } | ||
subxt-codegen = { version = "0.17.0", path = "../codegen" } | ||
# parse command line args | ||
structopt = "0.3.25" | ||
# make the request to a substrate node to get the metadata | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "subxt-codegen" | ||
version = "0.16.0" | ||
version = "0.17.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "subxt-examples" | ||
version = "0.16.0" | ||
version = "0.17.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "subxt-macro" | ||
version = "0.16.0" | ||
version = "0.17.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
autotests = false | ||
|
@@ -27,10 +27,10 @@ quote = "1.0.8" | |
syn = "1.0.58" | ||
scale-info = "1.0.0" | ||
|
||
subxt-codegen = { path = "../codegen", version = "0.16.0" } | ||
subxt-codegen = { path = "../codegen", version = "0.17.0" } | ||
|
||
[dev-dependencies] | ||
pretty_assertions = "1.0.0" | ||
subxt = { path = "../subxt", version = "0.16.0" } | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Let's remove |
||
subxt = { path = "../subxt" } | ||
trybuild = "1.0.38" | ||
sp-keyring = "5.0.0" |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "subxt" | ||
version = "0.16.0" | ||
version = "0.17.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
@@ -27,7 +27,7 @@ serde = { version = "1.0.124", features = ["derive"] } | |
serde_json = "1.0.64" | ||
thiserror = "1.0.24" | ||
|
||
subxt-macro = { version = "0.16.0", path = "../macro" } | ||
subxt-macro = { version = "0.17.0", path = "../macro" } | ||
|
||
sp-core = { version = "5.0.0", default-features = false } | ||
sp-runtime = { version = "5.0.0", default-features = false } | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -81,6 +81,7 @@ pub use crate::{ | |
error::{ | ||
BasicError, | ||
Error, | ||
GenericError, | ||
RuntimeError, | ||
TransactionError, | ||
}, | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "test-runtime" | ||
version = "0.16.0" | ||
version = "0.17.0" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
|
@@ -9,7 +9,7 @@ sp-runtime = "5.0.0" | |
codec = { package = "parity-scale-codec", version = "2", default-features = false, features = ["derive", "full", "bit-vec"] } | ||
|
||
[build-dependencies] | ||
subxt = { path = "../subxt", version = "0.16.0" } | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. let's remove the |
||
subxt = { path = "../subxt" } | ||
sp-core = "5.0.0" | ||
async-std = { version = "1.9.0", features = ["attributes", "tokio1"] } | ||
which = "4.2.2" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: there's some inconsistency over "do we have a newline between the title and list" in this doc; let's add a newline here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch, fixed in the latest revision