From 72ae3eabfc3b22c04a9fb91725047d544706d761 Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Mon, 12 Dec 2016 00:11:48 +0900 Subject: [PATCH] Prepare 0.9.0 --- RELEASE-NOTES | 12 ++++++++++++ server/version.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 14e6800..65d2b0b 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -1,3 +1,15 @@ +version 0.9.0 +------------- + +- complete rewrite of mempool code to have minimal latency and fix a + couple of minor bugs. When a new block is found, ideally this + should be communicated to clients who addresses are affected with a + single notification. Previously this would happen with two + notifications: one because the TX got in the block, and one because + that TX was no longer in the mempool. Fundamentally this a race + condition that cannot be eliminated but its occurrence should be + minimized. + version 0.8.12 -------------- diff --git a/server/version.py b/server/version.py index d0ad607..7f90829 100644 --- a/server/version.py +++ b/server/version.py @@ -1 +1 @@ -VERSION = "ElectrumX 0.8.12" +VERSION = "ElectrumX 0.9.0"