Prep for v0.34.0 release (#1395)

* getting ready for a 0.34.0 release

* minor change

* fix typos

* bump substrate deps as well
This commit is contained in:
Tadeo Hepperle
2024-01-23 19:02:53 +01:00
committed by GitHub
parent 388ebac993
commit 0ea9c7ede6
6 changed files with 863 additions and 593 deletions
+12 -12
View File
@@ -12,7 +12,7 @@ members = [
"metadata",
"signer",
"subxt",
"scripts/artifacts"
"scripts/artifacts",
]
# We exclude any crates that would depend on non mutually
@@ -24,7 +24,7 @@ resolver = "2"
[workspace.package]
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
version = "0.33.0"
version = "0.34.0"
rust-version = "1.74.0"
license = "Apache-2.0 OR GPL-3.0"
repository = "https://github.com/paritytech/subxt"
@@ -119,18 +119,18 @@ instant = { version = "0.1.12", default-features = false }
tokio-util = "0.7.10"
# Substrate crates:
sp-core = { version = "26.0.0", default-features = false }
sp-core-hashing = { version = "13.0.0", default-features = false }
sp-runtime = "29.0.0"
sp-keyring = "29.0.0"
sp-core = { version = "28.0.0", default-features = false }
sp-core-hashing = { version = "15.0.0", default-features = false }
sp-runtime = "31.0.0"
sp-keyring = "31.0.0"
# Subxt workspace crates:
subxt = { version = "0.33.0", path = "subxt", default-features = false }
subxt-macro = { version = "0.33.0", path = "macro" }
subxt-metadata = { version = "0.33.0", path = "metadata" }
subxt-codegen = { version = "0.33.0", path = "codegen" }
subxt-signer = { version = "0.33.0", path = "signer" }
subxt-lightclient = { version = "0.33.0", path = "lightclient", default-features = false }
subxt = { version = "0.34.0", path = "subxt", default-features = false }
subxt-macro = { version = "0.34.0", path = "macro" }
subxt-metadata = { version = "0.34.0", path = "metadata" }
subxt-codegen = { version = "0.34.0", path = "codegen" }
subxt-signer = { version = "0.34.0", path = "signer" }
subxt-lightclient = { version = "0.34.0", path = "lightclient", default-features = false }
test-runtime = { path = "testing/test-runtime" }
substrate-runner = { path = "testing/substrate-runner" }