From 4e619c9f5ec151b533adc0ba99ca6c492d843de6 Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Wed, 9 Nov 2016 07:44:17 +0900 Subject: [PATCH] Prepare 0.2.2 --- docs/RELEASE-NOTES | 11 +++++++++++ server/version.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/docs/RELEASE-NOTES b/docs/RELEASE-NOTES index bf1214c..cf34aed 100644 --- a/docs/RELEASE-NOTES +++ b/docs/RELEASE-NOTES @@ -1,3 +1,14 @@ +Version 0.2.2 +------------- + +- mostly refactoring: controller.py is gone; cache.py is half-gone. + Split BlockProcessor into 3: DB, BlockProcessor and BlockServer. DB + handles stored DB and FS state; BlockProcessor handles pushing the + chain forward and caching of updates, and BlockServer will + additionally serve clients on catchup. More to come. +- mempool: better logging; also yields during initial seeding +- issues fixed: #10 + Version 0.2.1 ------------- diff --git a/server/version.py b/server/version.py index 7dd5120..79efc29 100644 --- a/server/version.py +++ b/server/version.py @@ -1 +1 @@ -VERSION = "ElectrumX 0.2.1" +VERSION = "ElectrumX 0.2.2"