Skip to content
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

Prep for patch release 0.32.1 #1192

Merged
merged 2 commits into from
Oct 5, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.32.1] - 2023-10-05

This is a patch release, mainly to deploy the fix [#1191](https://github.com/paritytech/subxt/pull/1191), which resolves an issue around codegen when runtime API definitions have an argument name "_".

We also expose an API, `api.blocks().at(block_hash).account_nonce(account_id)`, which allows one to obtain the account nonce for some account at any block hash, and not just at the latest finalized block hash as is possible via `api.tx().account_nonce(..)`.

The main changes are:

- fix for when runtime API field name is _ ([#1191](https://github.com/paritytech/subxt/pull/1191))
- allow getting account nonce at arbitrary blocks, too ([#1182](https://github.com/paritytech/subxt/pull/1182))
- chore: improve some error messages ([#1183](https://github.com/paritytech/subxt/pull/1183))

## [0.32.0] - 2023-09-27

This is a big release that adds quite a lot, and also introduces some slightly larger breaking changes. Let's look at the main changes:
Expand Down
26 changes: 13 additions & 13 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ resolver = "2"
[workspace.package]
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
version = "0.32.0"
version = "0.32.1"
rust-version = "1.70.0"
license = "Apache-2.0 OR GPL-3.0"
repository = "https://github.com/paritytech/subxt"
Expand Down Expand Up @@ -104,12 +104,12 @@ sp-runtime = "24.0.0"
sp-keyring = "24.0.0"

# Subxt workspace crates:
subxt = { version = "0.32.0", path = "subxt", default-features = false }
subxt-macro = { version = "0.32.0", path = "macro" }
subxt-metadata = { version = "0.32.0", path = "metadata" }
subxt-codegen = { version = "0.32.0", path = "codegen" }
subxt-signer = { version = "0.32.0", path = "signer" }
subxt-lightclient = { version = "0.32.0", path = "lightclient", default-features = false }
subxt = { version = "0.32.1", path = "subxt", default-features = false }
subxt-macro = { version = "0.32.1", path = "macro" }
subxt-metadata = { version = "0.32.1", path = "metadata" }
subxt-codegen = { version = "0.32.1", path = "codegen" }
subxt-signer = { version = "0.32.1", path = "signer" }
subxt-lightclient = { version = "0.32.1", path = "lightclient", default-features = false }
test-runtime = { path = "testing/test-runtime" }
substrate-runner = { path = "testing/substrate-runner" }

Expand Down
2 changes: 1 addition & 1 deletion examples/parachain-example/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions examples/wasm-example/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading