Merge bitcoindevkit/rust-electrum-client#169: chore(release): bump version to 0.23.1
Some checks failed
CI / Test (1.75.0) (push) Has been cancelled
CI / Test (stable) (push) Has been cancelled
CI / Rust fmt (push) Has been cancelled
CI / Rust clippy (push) Has been cancelled

ed9784ee79 chore(release): bump version to `0.23.1` (Leonardo Lima)
e14f66b2f1 ci: use `ubuntu-latest` instead of `ubuntu-20.04` (Leonardo Lima)

Pull request description:

  fixes #168

  - updates the CI to run on `ubuntu-latest` GitHub runner, as the previously used `ubuntu-20.04` has been officially deprecated as of 2025-04-15, see: https://github.com/actions/runner-images/issues/11101.
  - updates the project version to `0.23.1`.
  - updates the `CHANGELOG.md` with changes to latest version.

ACKs for top commit:
  ValuedMammal:
    ACK ed9784ee79

Tree-SHA512: d448fc6fa2f9626dc4344ea3c8e7d1a948587f388803d923c755b454c73e4d6db860b70cba103a1092147c20656f7837e535e35eeefbead3dcb2f4260b25d839
This commit is contained in:
valued mammal 2025-04-22 10:00:50 -04:00
commit 7de4cb758d
No known key found for this signature in database
GPG Key ID: A98E0F0093B80812
3 changed files with 8 additions and 3 deletions

View File

@ -5,7 +5,7 @@ name: CI
jobs:
test:
name: Test
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
env:
TEST_ELECTRUM_SERVER: electrum.blockstream.info:50001
strategy:

View File

@ -10,6 +10,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.23.1]
- Fix batch request to Electrum servers out of order responses #160
- Allow types that references to `ElectrumApi` to also implement it #163
## [0.23.0]
- Raise MSRV to `1.75` and bump `rustls` to `0.23.21` #159
@ -50,4 +54,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[0.21.0]: https://github.com/bitcoindevkit/rust-electrum-client/compare/0.20.0...v0.21.0
[0.22.0]: https://github.com/bitcoindevkit/rust-electrum-client/compare/0.21.0...v0.22.0
[0.23.0]: https://github.com/bitcoindevkit/rust-electrum-client/compare/0.22.0...v0.23.0
[Unreleased]: https://github.com/bitcoindevkit/rust-electrum-client/compare/0.23.0...HEAD
[0.23.1]: https://github.com/bitcoindevkit/rust-electrum-client/compare/0.23.0...v0.23.1
[Unreleased]: https://github.com/bitcoindevkit/rust-electrum-client/compare/0.23.1...HEAD

View File

@ -1,6 +1,6 @@
[package]
name = "electrum-client"
version = "0.23.0"
version = "0.23.1"
authors = ["Alekos Filini <alekos.filini@gmail.com>"]
license = "MIT"
homepage = "https://github.com/bitcoindevkit/rust-electrum-client"