1
0
mirror of https://github.com/romanz/electrs.git synced 2024-11-19 01:43:29 +01:00

Bump version

This commit is contained in:
Roman Zeyde 2021-03-18 22:33:55 +02:00
parent c11cb3257d
commit 670588a1be
No known key found for this signature in database
GPG Key ID: 87CAE5FA46917CBB
3 changed files with 8 additions and 2 deletions

2
Cargo.lock generated
View File

@ -352,7 +352,7 @@ dependencies = [
[[package]]
name = "electrs"
version = "0.8.8"
version = "0.8.9"
dependencies = [
"base64",
"bincode",

View File

@ -1,6 +1,6 @@
[package]
name = "electrs"
version = "0.8.8"
version = "0.8.9"
authors = ["Roman Zeyde <me@romanzey.de>"]
description = "An efficient re-implementation of Electrum Server in Rust"
license = "MIT"

View File

@ -1,3 +1,9 @@
# 0.8.9 (19 Feb 2021)
* Use non-batched RPC to reduce bitcoind memory usage (#373)
* Ignore individual mempool transaction fetch fails (#381)
* Increase default wait_duration_secs to 10s (#384)
# 0.8.8 (22 Feb 2021)
* Deprecate `--cookie` configuration (@Kixunil)