diff --git a/Cargo.lock b/Cargo.lock index 611bb9fbd..3d7805014 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -354,7 +354,7 @@ checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" [[package]] name = "electrs" -version = "0.10.1" +version = "0.10.2" dependencies = [ "anyhow", "bitcoin", diff --git a/Cargo.toml b/Cargo.toml index 3d169f7ca..8692f6328 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "electrs" -version = "0.10.1" +version = "0.10.2" 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 573b98b17..1f9741c7c 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -1,3 +1,13 @@ +# 0.10.2 (Dec 31 2023) + +* Use batched RPC to fetch mempool entries & transactions (#979) +* Avoid redundant recomputation of fee histogram bins (#971) +* Explain behavior of config file loading (#964) +* Don't flush when nothing is written to DB (#958) +* Allow setting RocksDB log directory (#959) +* Upgrade `bitcoin` to 0.31.0 (#941) +* Update dependencies (#953, #951, #980) + # 0.10.1 (Nov 01 2023) * Fix build failure on Raspberry Pi 4 (32bit) (#940)