Skip to content

Commit 0473cfd

Browse files
authored
Prep to release 0.42.1: Reduce rust-version to Rustc 1.85.0 (#2005)
* Reduce rust-version to Rustc 1.85.0 * Bump to 0.42.1 in prep to release patch version
1 parent f8c333f commit 0473cfd

File tree

3 files changed

+34
-30
lines changed

3 files changed

+34
-30
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ 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.42.1] - 2025-05-12
8+
9+
This patch release reduces the rust-version to 1.85.0, given that we don't use any features newer than this at the moment.
10+
711
## [0.42.0] - 2025-05-09
812

913
The primary benefit of this release is introducing support for the [_about-to-be-stabilised-in-polkadot-sdk_](https://github.com/paritytech/polkadot-sdk/pull/8443) V16 metadata, and with that, support for calling Pallet View Functions on runtimes which will support this. Pallet View Functions are used much like Runtime APIs, except that they are declared in specific pallets and not declared at the runtime-wide level, allowing pallets to carry their own APIs with them.

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: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ resolver = "2"
3636
[workspace.package]
3737
authors = ["Parity Technologies <[email protected]>"]
3838
edition = "2024"
39-
version = "0.42.0"
40-
rust-version = "1.86.0"
39+
version = "0.42.1"
40+
rust-version = "1.85.0"
4141
license = "Apache-2.0 OR GPL-3.0"
4242
repository = "https://github.com/paritytech/subxt"
4343
documentation = "https://docs.rs/subxt"
@@ -152,16 +152,16 @@ sp-state-machine = { version = "0.45.0", default-features = false }
152152
sp-runtime = { version = "41.1.0", default-features = false }
153153

154154
# Subxt workspace crates:
155-
subxt = { version = "0.42.0", path = "subxt", default-features = false }
156-
subxt-core = { version = "0.42.0", path = "core", default-features = false }
157-
subxt-macro = { version = "0.42.0", path = "macro" }
158-
subxt-metadata = { version = "0.42.0", path = "metadata", default-features = false }
159-
subxt-codegen = { version = "0.42.0", path = "codegen" }
160-
subxt-signer = { version = "0.42.0", path = "signer", default-features = false }
161-
subxt-rpcs = { version = "0.42.0", path = "rpcs", default-features = false }
162-
subxt-lightclient = { version = "0.42.0", path = "lightclient", default-features = false }
163-
subxt-utils-fetchmetadata = { version = "0.42.0", path = "utils/fetch-metadata", default-features = false }
164-
subxt-utils-stripmetadata = { version = "0.42.0", path = "utils/strip-metadata", default-features = false }
155+
subxt = { version = "0.42.1", path = "subxt", default-features = false }
156+
subxt-core = { version = "0.42.1", path = "core", default-features = false }
157+
subxt-macro = { version = "0.42.1", path = "macro" }
158+
subxt-metadata = { version = "0.42.1", path = "metadata", default-features = false }
159+
subxt-codegen = { version = "0.42.1", path = "codegen" }
160+
subxt-signer = { version = "0.42.1", path = "signer", default-features = false }
161+
subxt-rpcs = { version = "0.42.1", path = "rpcs", default-features = false }
162+
subxt-lightclient = { version = "0.42.1", path = "lightclient", default-features = false }
163+
subxt-utils-fetchmetadata = { version = "0.42.1", path = "utils/fetch-metadata", default-features = false }
164+
subxt-utils-stripmetadata = { version = "0.42.1", path = "utils/strip-metadata", default-features = false }
165165
test-runtime = { path = "testing/test-runtime" }
166166
substrate-runner = { path = "testing/substrate-runner" }
167167

0 commit comments

Comments
 (0)