From b0039a25a71a6da0e1f9b5d5dc9407105163d356 Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Sun, 26 Feb 2017 10:49:27 +0900 Subject: [PATCH] Prepare 0.99.1 --- README.rst | 15 +++++++++++++++ server/version.py | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 47650b0..74650f3 100644 --- a/README.rst +++ b/README.rst @@ -132,6 +132,17 @@ version for the release of 1.0. ChangeLog ========= +Version 0.99.1 +-------------- + +* Add more verbose logging in attempt to understand issue `#135`_ +* REPORT_TCP_PORT_TOR and REPORT_SSL_PORT_TOR were ignored when constructing + IRC real names. Fixes `#136`_ +* Only serve chunk requests in forward direction; disconnect clients iterating + backwards. Minimizes bandwidth consumption caused by misbehaving Electrum + clients. Closes `#132`_ +* Tor coin peers would always be scheduled for check, fixes `#138`_ (fr3aker) + Version 0.99 ------------ @@ -367,6 +378,10 @@ stability please stick with the 0.9 series. .. _#124: https://github.com/kyuupichan/electrumx/issues/124 .. _#126: https://github.com/kyuupichan/electrumx/issues/126 .. _#129: https://github.com/kyuupichan/electrumx/issues/129 +.. _#132: https://github.com/kyuupichan/electrumx/issues/132 +.. _#135: https://github.com/kyuupichan/electrumx/issues/135 +.. _#136: https://github.com/kyuupichan/electrumx/issues/136 +.. _#138: https://github.com/kyuupichan/electrumx/issues/138 .. _docs/HOWTO.rst: https://github.com/kyuupichan/electrumx/blob/master/docs/HOWTO.rst .. _docs/ENVIRONMENT.rst: https://github.com/kyuupichan/electrumx/blob/master/docs/ENVIRONMENT.rst .. _docs/PEER_DISCOVERY.rst: https://github.com/kyuupichan/electrumx/blob/master/docs/PEER_DISCOVERY.rst diff --git a/server/version.py b/server/version.py index 2a6011e..4d9138d 100644 --- a/server/version.py +++ b/server/version.py @@ -1,5 +1,5 @@ # Server name and protocol versions -VERSION = 'ElectrumX 0.99' +VERSION = 'ElectrumX 0.99.1' PROTOCOL_MIN = '1.0' PROTOCOL_MAX = '1.0'