Skip to content

Commit

Permalink
chore: release v0.36.1 (#1616)
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasad1 committed May 27, 2024
1 parent d2f0e5e commit e8a9232
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 23 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,20 @@ 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.36.1] - 2024-05-27

This release mainly adds support for the sign extension `CheckMetadataHash` and fixes a regression introduced in v0.36.0
where the type de-duplication was too aggressive and lots of the same type such as `BoundedVec` was duplicated to
plenty of different types such as BoundedVec1, BoundedVec2, .. BoundedVec<N>.

### Added
- Implemented `sign_prehashed` for `ecdsa::Keypair` and `eth::Keypair` ([#1598](https://github.com/paritytech/subxt/pull/1598))
- Add a basic version of the CheckMetadataHash signed extension ([#1590](https://github.com/paritytech/subxt/pull/1590))

## Changed
- Remove `derive_more` ([#1600](https://github.com/paritytech/subxt/pull/1600))
- chore(deps): bump scale-typegen v0.8.0 ([#1615](https://github.com/paritytech/subxt/pull/1615))

## [0.36.0] - 2024-05-16

This release adds a few new features, which I'll go over below in more detail.
Expand Down
30 changes: 15 additions & 15 deletions Cargo.lock

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

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ resolver = "2"
[workspace.package]
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
version = "0.36.0"
version = "0.36.1"
rust-version = "1.74.0"
license = "Apache-2.0 OR GPL-3.0"
repository = "https://github.com/paritytech/subxt"
Expand Down Expand Up @@ -138,13 +138,13 @@ sp-runtime = "34.0.0"
sp-keyring = "34.0.0"

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

Expand Down

0 comments on commit e8a9232

Please sign in to comment.