Skip to content

Commit f565bda

Browse files
authored
Prep for 0.44.0 release (#2071)
1 parent 3aabd6d commit f565bda

File tree

6 files changed

+265
-229
lines changed

6 files changed

+265
-229
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,28 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [0.44.0] - 2025-08-28
8+
9+
This small release primarily fixes a few issues, but also adds the code for a prelease of `subxt-historic`, a new crate (at the moment) for working with historic blocks and state. Future releases will aim to stabilize this crate to the level of other `subxt` crates or otherwise merge the logic into `subxt` itself.
10+
11+
This is a minor version bump because, in theory at least, adding the `Clone` bound to block headers in ([#2047](https://github.com/paritytech/subxt/pull/2047)) is a breaking change, although I think it is unlikely that this will impact any users.
12+
13+
### Added
14+
15+
- Add prerelease `subxt-historic` crate for accessing historic (non head-of-chain) blocks ([#2040](https://github.com/paritytech/subxt/pull/2040))
16+
17+
### Changed
18+
19+
- Block: Implement clone ([#2047](https://github.com/paritytech/subxt/pull/2047))
20+
- Increase number of dev accounts ([#2068](https://github.com/paritytech/subxt/pull/2068))
21+
22+
### Fixed
23+
24+
- Do not panic when encoding call data with invalid fields ([#2070](https://github.com/paritytech/subxt/pull/2070))
25+
- Tweak test to reduce chance of failure, and need jsonrpsee/server for tests ([#2057](https://github.com/paritytech/subxt/pull/2057))
26+
- Fix 1.89 clippy warnings ([#2055](https://github.com/paritytech/subxt/pull/2055))
27+
- Increase reconnecting client request/response size ([#2046](https://github.com/paritytech/subxt/pull/2046))
28+
729
## [0.43.0] - 2025-07-17
830

931
This is a reasonably small release which is mainly bug fixing, but has a couple of changes I'd like to elaborate on:

Cargo.lock

Lines changed: 18 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ resolver = "2"
3838
[workspace.package]
3939
authors = ["Parity Technologies <[email protected]>"]
4040
edition = "2024"
41-
version = "0.43.0"
41+
version = "0.44.0"
4242
rust-version = "1.85.0"
4343
license = "Apache-2.0 OR GPL-3.0"
4444
repository = "https://github.com/paritytech/subxt"
@@ -156,16 +156,16 @@ sp-state-machine = { version = "0.45.0", default-features = false }
156156
sp-runtime = { version = "41.1.0", default-features = false }
157157

158158
# Subxt workspace crates:
159-
subxt = { version = "0.43.0", path = "subxt", default-features = false }
160-
subxt-core = { version = "0.43.0", path = "core", default-features = false }
161-
subxt-macro = { version = "0.43.0", path = "macro" }
162-
subxt-metadata = { version = "0.43.0", path = "metadata", default-features = false }
163-
subxt-codegen = { version = "0.43.0", path = "codegen" }
164-
subxt-signer = { version = "0.43.0", path = "signer", default-features = false }
165-
subxt-rpcs = { version = "0.43.0", path = "rpcs", default-features = false }
166-
subxt-lightclient = { version = "0.43.0", path = "lightclient", default-features = false }
167-
subxt-utils-fetchmetadata = { version = "0.43.0", path = "utils/fetch-metadata", default-features = false }
168-
subxt-utils-stripmetadata = { version = "0.43.0", path = "utils/strip-metadata", default-features = false }
159+
subxt = { version = "0.44.0", path = "subxt", default-features = false }
160+
subxt-core = { version = "0.44.0", path = "core", default-features = false }
161+
subxt-macro = { version = "0.44.0", path = "macro" }
162+
subxt-metadata = { version = "0.44.0", path = "metadata", default-features = false }
163+
subxt-codegen = { version = "0.44.0", path = "codegen" }
164+
subxt-signer = { version = "0.44.0", path = "signer", default-features = false }
165+
subxt-rpcs = { version = "0.44.0", path = "rpcs", default-features = false }
166+
subxt-lightclient = { version = "0.44.0", path = "lightclient", default-features = false }
167+
subxt-utils-fetchmetadata = { version = "0.44.0", path = "utils/fetch-metadata", default-features = false }
168+
subxt-utils-stripmetadata = { version = "0.44.0", path = "utils/strip-metadata", default-features = false }
169169
test-runtime = { path = "testing/test-runtime" }
170170
substrate-runner = { path = "testing/substrate-runner" }
171171

examples/ffi-example/Cargo.lock

Lines changed: 13 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)