From 98c4ce3fefdf1dfcdab6de6b5d566409997f5c27 Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Sun, 27 Nov 2016 22:01:12 +0900 Subject: [PATCH] Prepare 0.7.12 --- RELEASE-NOTES | 11 +++++++++++ server/version.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index d283fc3..0c74d53 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -1,3 +1,14 @@ +version 0.7.12 +-------------- + +- minor bug fixes: 2 in JSON RPC, 1 in get_utxos (affected addresslistunspent) +- leveldb / rocksdb are opened with a different maximum open files limit, + depending on whether the chain has been fully synced or not. If synced + you want the files for network sockets, if not synced for the DB engines. + Once synced the DB will be reopened with the lower limit to free up the + files for serving network connections +- various refactoring preparing for possible asynchronous block processing + version 0.7.11 -------------- diff --git a/server/version.py b/server/version.py index 1028f97..3236b2a 100644 --- a/server/version.py +++ b/server/version.py @@ -1 +1 @@ -VERSION = "ElectrumX 0.7.11" +VERSION = "ElectrumX 0.7.12"