From 603830f1b921928089c558d90519b7ca0c0d4658 Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Fri, 17 May 2024 19:54:44 +0300 Subject: [PATCH] Release 0.10.5 --- Cargo.lock | 2 +- Cargo.toml | 2 +- RELEASE-NOTES.md | 5 +++++ 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b9cb670..131d53f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -388,7 +388,7 @@ checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" [[package]] name = "electrs" -version = "0.10.4" +version = "0.10.5" dependencies = [ "anyhow", "bitcoin", diff --git a/Cargo.toml b/Cargo.toml index a156cd0..6cb9c4d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "electrs" -version = "0.10.4" +version = "0.10.5" authors = ["Roman Zeyde "] description = "An efficient re-implementation of Electrum Server in Rust" license = "MIT" diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 5d26237..8a7b8e4 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -1,3 +1,8 @@ +# 0.10.5 (May 18 2024) + +* Update dependencies (`bitcoin`, `bitcoin_slices`, `bitcoincore-rpc`, `rayon`) +* Support latest bitcoind (https://github.com/rust-bitcoin/rust-bitcoincore-rpc/pull/353 & https://github.com/rust-bitcoin/rust-bitcoincore-rpc/pull/356) + # 0.10.4 (Mar 15 2024) * Don't fail mempool sync on missing transactions (#997)