From f723455992fb1cef2c5c51fa272b530433e10d09 Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Fri, 8 Sep 2017 11:13:03 +0900 Subject: [PATCH] Prepare 1.1pre2 --- README.rst | 11 +++++++++++ server/version.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 4c538f4..545df38 100644 --- a/README.rst +++ b/README.rst @@ -134,6 +134,16 @@ Roadmap ChangeLog ========= +Version 1.1pre2 +--------------- + +- peerdisc: handle protocol 1.1 server replies +- issue `#251`_: fix protocol version reported in server.peers.subscribe +- fix handling of failed transaction broadcast +- fix typos (SomberNight) +- doc and test updates +- dash: return errors in JSON error field for protocol 1.1 + Version 1.1pre1 --------------- @@ -339,6 +349,7 @@ Version 1.0 .. _#163: https://github.com/kyuupichan/electrumx/issues/163 .. _#180: https://github.com/kyuupichan/electrumx/issues/180 .. _#223: https://github.com/kyuupichan/electrumx/issues/223 +.. _#251: https://github.com/kyuupichan/electrumx/issues/251 .. _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 de19852..9938fe3 100644 --- a/server/version.py +++ b/server/version.py @@ -1,5 +1,5 @@ # Server name and protocol versions -VERSION = 'ElectrumX 1.1pre1' +VERSION = 'ElectrumX 1.1pre2' PROTOCOL_MIN = '0.9' PROTOCOL_MAX = '1.1'