From ccf6967d739d8a8b66a1be9ca4086043fa43a165 Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Fri, 6 Dec 2019 13:16:27 +0200 Subject: [PATCH] Bump version --- Cargo.lock | 2 +- Cargo.toml | 2 +- RELEASE-NOTES.md | 4 ++++ 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5328bae..796a041 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -333,7 +333,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "electrs" -version = "0.8.1" +version = "0.8.2" dependencies = [ "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", "bincode 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 4a19f59..4b043da 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "electrs" -version = "0.8.1" +version = "0.8.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 9977084..83af86a 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -1,3 +1,7 @@ +# 0.8.2 (6 Dec 2019) + +* Downgrade rust-rocksdb to 0.12.2 (https://github.com/romanz/electrs/issues/193) + # 0.8.1 (20 Nov 2019) * Allow setting `--cookie-file` path via configuration (@Kixunil)