From 43da8e9e6b764c9b35cb42882eea235bfb7fa435 Mon Sep 17 00:00:00 2001 From: Steve Myers Date: Thu, 21 Nov 2024 20:29:52 -0600 Subject: [PATCH] chore: bump version to 0.22.0 and update CHANGELOG.md --- CHANGELOG.md | 8 +++++++- Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3852c42..4156016 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.22.0] + + - Updates the NoCertificateVerification implementation for the rustls::client::danger::ServerCertVerifier to use the rustls::SignatureScheme from CryptoProvider in use #150 + - Add `id_from_pos` support #155 + ## [0.21.0] - Add use-rustls-ring feature #135 @@ -37,4 +42,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [0.19.0]: https://github.com/bitcoindevkit/rust-electrum-client/compare/0.18.0...v0.19.0 [0.20.0]: https://github.com/bitcoindevkit/rust-electrum-client/compare/0.19.0...v0.20.0 [0.21.0]: https://github.com/bitcoindevkit/rust-electrum-client/compare/0.20.0...v0.21.0 -[Unreleased]: https://github.com/bitcoindevkit/rust-electrum-client/compare/0.21.0...HEAD +[0.22.0]: https://github.com/bitcoindevkit/rust-electrum-client/compare/0.21.0...v0.22.0 +[Unreleased]: https://github.com/bitcoindevkit/rust-electrum-client/compare/0.22.0...HEAD diff --git a/Cargo.toml b/Cargo.toml index 261713d..f3dd730 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "electrum-client" -version = "0.21.0" +version = "0.22.0" authors = ["Alekos Filini "] license = "MIT" homepage = "https://github.com/bitcoindevkit/rust-electrum-client"