chore: release v0.35.3

This commit is contained in:
Niklas Adolfsson
2024-04-11 10:42:53 +02:00
parent c01c61effe
commit 97186979a3
3 changed files with 25 additions and 21 deletions
+5 -1
View File
@@ -4,7 +4,11 @@ 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.35.1] - 2024-04-09
## [0.35.3] - 2024-04-11
Another bug-fix release that substitutes `BinaryHeap` for `Vec` in the same way that we do for BTreeMap/Set to avoid issues with the Ord constraint on the generic type (because this may be a generated type, and we don't automatically apply Ord to generated types).
## [0.35.2] - 2024-04-09
This is a small patch release that fixes the storage key decoding. Previously, we assumed the length of the hash of the storage prefix or entry name was 8 bytes, however it is 16.
Generated
+13 -13
View File
@@ -327,7 +327,7 @@ checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"
[[package]]
name = "artifacts"
version = "0.35.2"
version = "0.35.3"
dependencies = [
"substrate-runner",
]
@@ -1765,7 +1765,7 @@ dependencies = [
[[package]]
name = "generate-custom-metadata"
version = "0.35.2"
version = "0.35.3"
dependencies = [
"frame-metadata 16.0.0",
"parity-scale-codec",
@@ -2250,7 +2250,7 @@ dependencies = [
[[package]]
name = "integration-tests"
version = "0.35.2"
version = "0.35.3"
dependencies = [
"assert_matches",
"frame-metadata 16.0.0",
@@ -4593,7 +4593,7 @@ dependencies = [
[[package]]
name = "substrate-runner"
version = "0.35.2"
version = "0.35.3"
[[package]]
name = "subtle"
@@ -4603,7 +4603,7 @@ checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc"
[[package]]
name = "subxt"
version = "0.35.2"
version = "0.35.3"
dependencies = [
"assert_matches",
"async-trait",
@@ -4647,7 +4647,7 @@ dependencies = [
[[package]]
name = "subxt-cli"
version = "0.35.2"
version = "0.35.3"
dependencies = [
"clap 4.5.2",
"color-eyre",
@@ -4676,7 +4676,7 @@ dependencies = [
[[package]]
name = "subxt-codegen"
version = "0.35.2"
version = "0.35.3"
dependencies = [
"frame-metadata 16.0.0",
"getrandom",
@@ -4696,7 +4696,7 @@ dependencies = [
[[package]]
name = "subxt-lightclient"
version = "0.35.2"
version = "0.35.3"
dependencies = [
"futures",
"futures-timer",
@@ -4721,7 +4721,7 @@ dependencies = [
[[package]]
name = "subxt-macro"
version = "0.35.2"
version = "0.35.3"
dependencies = [
"darling 0.20.8",
"parity-scale-codec",
@@ -4734,7 +4734,7 @@ dependencies = [
[[package]]
name = "subxt-metadata"
version = "0.35.2"
version = "0.35.3"
dependencies = [
"assert_matches",
"bitvec",
@@ -4749,7 +4749,7 @@ dependencies = [
[[package]]
name = "subxt-signer"
version = "0.35.2"
version = "0.35.3"
dependencies = [
"bip39",
"cfg-if",
@@ -4816,7 +4816,7 @@ dependencies = [
[[package]]
name = "test-runtime"
version = "0.35.2"
version = "0.35.3"
dependencies = [
"hex",
"impl-serde",
@@ -5245,7 +5245,7 @@ checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
[[package]]
name = "ui-tests"
version = "0.35.2"
version = "0.35.3"
dependencies = [
"frame-metadata 16.0.0",
"generate-custom-metadata",
+7 -7
View File
@@ -31,7 +31,7 @@ resolver = "2"
[workspace.package]
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
version = "0.35.2"
version = "0.35.3"
rust-version = "1.74.0"
license = "Apache-2.0 OR GPL-3.0"
repository = "https://github.com/paritytech/subxt"
@@ -135,12 +135,12 @@ sp-runtime = "34.0.0"
sp-keyring = "34.0.0"
# Subxt workspace crates:
subxt = { version = "0.35.0", path = "subxt", default-features = false }
subxt-macro = { version = "0.35.0", path = "macro" }
subxt-metadata = { version = "0.35.0", path = "metadata", default-features = false }
subxt-codegen = { version = "0.35.0", path = "codegen" }
subxt-signer = { version = "0.35.0", path = "signer", default-features = false }
subxt-lightclient = { version = "0.35.0", path = "lightclient", default-features = false }
subxt = { version = "0.35.3", path = "subxt", default-features = false }
subxt-macro = { version = "0.35.3", path = "macro" }
subxt-metadata = { version = "0.35.3", path = "metadata", default-features = false }
subxt-codegen = { version = "0.35.3", path = "codegen" }
subxt-signer = { version = "0.35.3", path = "signer", default-features = false }
subxt-lightclient = { version = "0.35.3", path = "lightclient", default-features = false }
test-runtime = { path = "testing/test-runtime" }
substrate-runner = { path = "testing/substrate-runner" }