From 33b1ce8f6dc3807476a4db93243942e9039141ae Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Sat, 3 Dec 2016 14:39:36 +0900 Subject: [PATCH] Prepare 0.8.0 --- RELEASE-NOTES | 19 +++++++++++++++++++ server/version.py | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 731d580..5343e4e 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -1,3 +1,22 @@ +verion 0.8.0 +------------ + +- stale connections are periodically closed. See docs/ENV-NOTES for + SESSION_TIMEOUT, default is 10 minutes. Issue #56. +- each session gets its own ID which is used in the logs instead of its + network address; the network address is still shown on initial connection. + Issue #55. +- the session ID is also shown in the sessions list. You can use this ID + with the following new RPC commands which take a list of session ids: + + electrumx_rpc.py log + electrumx_rpc.py disconnect + + The first will toggle logging of the sessions. A logged sesssion + prints every incoming request to the logs. + The second will disconnect the sessions. + Example: "electrumx_rpc.py log 15 369" + version 0.7.20 -------------- diff --git a/server/version.py b/server/version.py index c901cc6..8a6e890 100644 --- a/server/version.py +++ b/server/version.py @@ -1 +1 @@ -VERSION = "ElectrumX 0.7.20" +VERSION = "ElectrumX 0.8.0"