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
This commit is contained in:
James Wilson
2025-05-12 13:13:21 +01:00
committed by GitHub
parent f8c333f30b
commit 0473cfd292
3 changed files with 34 additions and 30 deletions
+12 -12
View File
@@ -36,8 +36,8 @@ resolver = "2"
[workspace.package]
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2024"
version = "0.42.0"
rust-version = "1.86.0"
version = "0.42.1"
rust-version = "1.85.0"
license = "Apache-2.0 OR GPL-3.0"
repository = "https://github.com/paritytech/subxt"
documentation = "https://docs.rs/subxt"
@@ -152,16 +152,16 @@ sp-state-machine = { version = "0.45.0", default-features = false }
sp-runtime = { version = "41.1.0", default-features = false }
# Subxt workspace crates:
subxt = { version = "0.42.0", path = "subxt", default-features = false }
subxt-core = { version = "0.42.0", path = "core", default-features = false }
subxt-macro = { version = "0.42.0", path = "macro" }
subxt-metadata = { version = "0.42.0", path = "metadata", default-features = false }
subxt-codegen = { version = "0.42.0", path = "codegen" }
subxt-signer = { version = "0.42.0", path = "signer", default-features = false }
subxt-rpcs = { version = "0.42.0", path = "rpcs", default-features = false }
subxt-lightclient = { version = "0.42.0", path = "lightclient", default-features = false }
subxt-utils-fetchmetadata = { version = "0.42.0", path = "utils/fetch-metadata", default-features = false }
subxt-utils-stripmetadata = { version = "0.42.0", path = "utils/strip-metadata", default-features = false }
subxt = { version = "0.42.1", path = "subxt", default-features = false }
subxt-core = { version = "0.42.1", path = "core", default-features = false }
subxt-macro = { version = "0.42.1", path = "macro" }
subxt-metadata = { version = "0.42.1", path = "metadata", default-features = false }
subxt-codegen = { version = "0.42.1", path = "codegen" }
subxt-signer = { version = "0.42.1", path = "signer", default-features = false }
subxt-rpcs = { version = "0.42.1", path = "rpcs", default-features = false }
subxt-lightclient = { version = "0.42.1", path = "lightclient", default-features = false }
subxt-utils-fetchmetadata = { version = "0.42.1", path = "utils/fetch-metadata", default-features = false }
subxt-utils-stripmetadata = { version = "0.42.1", path = "utils/strip-metadata", default-features = false }
test-runtime = { path = "testing/test-runtime" }
substrate-runner = { path = "testing/substrate-runner" }