Skip to content

Commit

Permalink
Prep for 0.30.1 release (#1094)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsdw authored and tadeohepperle committed Aug 2, 2023
1 parent 2e8f684 commit 8da983c
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 18 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ 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.30.1] - 2023-07-25

This patch release fixes a small issue whereby using `runtime_metadata_url` in the Subxt macro would still attempt to download unstable metadata, which can fail at the moment if the chain has not updated to stable V15 metadata yet (which has a couple of changes from the last unstable version). Note that you're generally encouraged to use `runtime_metadata_path` instead, which does not have this issue.

### Fixes

- codegen: Fetch and decode metadata version then fallback ([#1092](https://github.com/paritytech/subxt/pull/1092))


## [0.30.0] - 2023-07-24

This release beings with it a number of exciting additions. Let's cover a few of the most significant ones:
Expand Down
22 changes: 11 additions & 11 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ resolver = "2"
[workspace.package]
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
version = "0.30.0"
version = "0.30.1"
rust-version = "1.64.0"
license = "Apache-2.0 OR GPL-3.0"
repository = "https://github.com/paritytech/subxt"
Expand Down Expand Up @@ -103,12 +103,12 @@ sp-keyring = "24.0.0"
sp-version = "22.0.0"

# Subxt workspace crates:
subxt = { version = "0.30.0", path = "subxt", default-features = false }
subxt-macro = { version = "0.30.0", path = "macro" }
subxt-metadata = { version = "0.30.0", path = "metadata" }
subxt-codegen = { version = "0.30.0", path = "codegen" }
subxt-signer = { version = "0.30.0", path = "signer" }
subxt-lightclient = { version = "0.30.0", path = "lightclient", default-features = false }
subxt = { version = "0.30.1", path = "subxt", default-features = false }
subxt-macro = { version = "0.30.1", path = "macro" }
subxt-metadata = { version = "0.30.1", path = "metadata" }
subxt-codegen = { version = "0.30.1", path = "codegen" }
subxt-signer = { version = "0.30.1", path = "signer" }
subxt-lightclient = { version = "0.30.1", path = "lightclient", default-features = false }
test-runtime = { path = "testing/test-runtime" }
substrate-runner = { path = "testing/substrate-runner" }

Expand Down

0 comments on commit 8da983c

Please sign in to comment.