Skip to content

Commit 9573b55

Browse files
committed
chore release v0.40.0 (#1946)
1 parent e1b765c commit 9573b55

File tree

3 files changed

+34
-25
lines changed

3 files changed

+34
-25
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ 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.40.0] - 2025-03-06
8+
9+
This release reverts the usage of the polkadot-sdk umbrella crate, which was causing issues such as an increased number of dependencies in Cargo.lock. For more details, see #1925.
10+
11+
Additionally, this update bumps the Polkadot SDK-related dependencies to their latest versions, ensuring compatibility and stability.
12+
13+
### Fixed
14+
- Remove usage of polkadot-sdk umbrella crate ([#1926](https://github.com/paritytech/subxt/pull/1926))
15+
716
## [0.39.0] - 2025-02-04
817

918
This release is mostly bug fixes and changes. The only change that should be a breaking change is removing the `substrate-compat` feature flag (see [#1850](https://github.com/paritytech/subxt/pull/1850)), which we'll go into more detail about.

Cargo.lock

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

Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ resolver = "2"
3434
[workspace.package]
3535
authors = ["Parity Technologies <[email protected]>"]
3636
edition = "2021"
37-
version = "0.39.0"
37+
version = "0.40.0"
3838
rust-version = "1.81.0"
3939
license = "Apache-2.0 OR GPL-3.0"
4040
repository = "https://github.com/paritytech/subxt"
@@ -147,14 +147,14 @@ sp-state-machine = { version = "0.44.0", default-features = false }
147147
sp-runtime = { version = "40.0.1", default-features = false }
148148

149149
# Subxt workspace crates:
150-
subxt = { version = "0.39.0", path = "subxt", default-features = false }
151-
subxt-core = { version = "0.39.0", path = "core", default-features = false }
152-
subxt-macro = { version = "0.39.0", path = "macro" }
153-
subxt-metadata = { version = "0.39.0", path = "metadata", default-features = false }
154-
subxt-codegen = { version = "0.39.0", path = "codegen" }
155-
subxt-signer = { version = "0.39.0", path = "signer", default-features = false }
156-
subxt-lightclient = { version = "0.39.0", path = "lightclient", default-features = false }
157-
subxt-utils-fetchmetadata = { version = "0.39.0", path = "utils/fetch-metadata", default-features = false }
150+
subxt = { version = "0.40.0", path = "subxt", default-features = false }
151+
subxt-core = { version = "0.40.0", path = "core", default-features = false }
152+
subxt-macro = { version = "0.40.0", path = "macro" }
153+
subxt-metadata = { version = "0.40.0", path = "metadata", default-features = false }
154+
subxt-codegen = { version = "0.40.0", path = "codegen" }
155+
subxt-signer = { version = "0.40.0", path = "signer", default-features = false }
156+
subxt-lightclient = { version = "0.40.0", path = "lightclient", default-features = false }
157+
subxt-utils-fetchmetadata = { version = "0.40.0", path = "utils/fetch-metadata", default-features = false }
158158
test-runtime = { path = "testing/test-runtime" }
159159
substrate-runner = { path = "testing/substrate-runner" }
160160

0 commit comments

Comments
 (0)