diff --git a/Cargo.lock b/Cargo.lock index 4f6beffe5..4f013fd91 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -312,7 +312,7 @@ checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457" [[package]] name = "electrs" -version = "0.9.13" +version = "0.9.14" dependencies = [ "anyhow", "bitcoin", diff --git a/Cargo.toml b/Cargo.toml index ae4975405..448a53d2e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "electrs" -version = "0.9.13" +version = "0.9.14" 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 1e6d86f32..1f7b49ea7 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -1,3 +1,14 @@ +# 0.9.14 (Jun 10 2023) + +* Fix 'server.version' support for version range (#887) +* Allow not waiting for block download before sync (#888) +* Fix typo in config_specification.toml (#883) +* Bump bitcoind version used in CI (#882) +* Prefix Prometheus metrics with 'electrs_' (#881) +* Fixup error handling in Prometheus HTTP server (#880) +* Add address->scripthash conversion tool +* Update dependencies (crossbeam-channel, jsonrpc, bitcoincore-rpc, serde_json, tempfile) + # 0.9.13 (Mar 31 2023) * Upgrade dependencies (`bitcoin` & `bitcoincore-rpc` #865, `crossbeam-channel` #854, `serde_json` #855, `tempfile` #850)