From 9456b75a9137f523c4c9fdcd7e7f9de12581d218 Mon Sep 17 00:00:00 2001
From: Neil Booth <kyuupichan@gmail.com>
Date: Sat, 3 Dec 2016 23:39:46 +0900
Subject: [PATCH] Prepare 0.8.2

---
 RELEASE-NOTES     | 14 ++++++++++++++
 server/version.py |  2 +-
 2 files changed, 15 insertions(+), 1 deletion(-)

diff --git a/RELEASE-NOTES b/RELEASE-NOTES
index 79ac010..b97ee58 100644
--- a/RELEASE-NOTES
+++ b/RELEASE-NOTES
@@ -1,3 +1,17 @@
+version 0.8.2
+-------------
+
+- process new blocks in the asyncio executor; essentially a python thread.
+  This should eliminate latency during block processing that caused sessions
+  to be dropped.
+- bandwith limit is restored incrementally to a session over the hour
+  rather than in a lump when one hour has passed.  Also, only the
+  limit is refunded each hour; previously the entire usage would be
+  refunded.  So if the session uses 30MB bandwidth and your limit is
+  10MB, it will take 3 hrs before the session is considered to have
+  used none of its allotted bandwidth; previously it would happen after 1
+  hour.
+
 version 0.8.1
 -------------
 
diff --git a/server/version.py b/server/version.py
index 389d504..2b39ce5 100644
--- a/server/version.py
+++ b/server/version.py
@@ -1 +1 @@
-VERSION = "ElectrumX 0.8.1"
+VERSION = "ElectrumX 0.8.2"