Skip to content

Commit 7de4cb7

Browse files
committed
Merge #169: chore(release): bump version to 0.23.1
ed9784e chore(release): bump version to `0.23.1` (Leonardo Lima) e14f66b 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: actions/runner-images#11101. - updates the project version to `0.23.1`. - updates the `CHANGELOG.md` with changes to latest version. ACKs for top commit: ValuedMammal: ACK ed9784e Tree-SHA512: d448fc6fa2f9626dc4344ea3c8e7d1a948587f388803d923c755b454c73e4d6db860b70cba103a1092147c20656f7837e535e35eeefbead3dcb2f4260b25d839
2 parents 862280a + ed9784e commit 7de4cb7

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.github/workflows/cont_integration.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name: CI
55
jobs:
66
test:
77
name: Test
8-
runs-on: ubuntu-20.04
8+
runs-on: ubuntu-latest
99
env:
1010
TEST_ELECTRUM_SERVER: electrum.blockstream.info:50001
1111
strategy:

CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
## [Unreleased]
1111

1212

13+
## [0.23.1]
14+
- Fix batch request to Electrum servers out of order responses #160
15+
- Allow types that references to `ElectrumApi` to also implement it #163
16+
1317
## [0.23.0]
1418

1519
- 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
5054
[0.21.0]: https://github.com/bitcoindevkit/rust-electrum-client/compare/0.20.0...v0.21.0
5155
[0.22.0]: https://github.com/bitcoindevkit/rust-electrum-client/compare/0.21.0...v0.22.0
5256
[0.23.0]: https://github.com/bitcoindevkit/rust-electrum-client/compare/0.22.0...v0.23.0
53-
[Unreleased]: https://github.com/bitcoindevkit/rust-electrum-client/compare/0.23.0...HEAD
57+
[0.23.1]: https://github.com/bitcoindevkit/rust-electrum-client/compare/0.23.0...v0.23.1
58+
[Unreleased]: https://github.com/bitcoindevkit/rust-electrum-client/compare/0.23.1...HEAD

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "electrum-client"
3-
version = "0.23.0"
3+
version = "0.23.1"
44
authors = ["Alekos Filini <alekos.filini@gmail.com>"]
55
license = "MIT"
66
homepage = "https://github.com/bitcoindevkit/rust-electrum-client"

0 commit comments

Comments
 (0)