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"