From f9e66b721fb48a0fefa016a5b0305ebd3f4cc7a2 Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Fri, 2 Nov 2018 14:42:05 -0400 Subject: [PATCH] Prepare 1.8.9 --- docs/changelog.rst | 51 +++++-------------------------------------- docs/conf.py | 2 +- electrumx/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 9 insertions(+), 48 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 0c5639b54..d3f6256e3 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -16,6 +16,11 @@ Bitcoin XT with CToR disabled. +Version 1.8.9 (02 Nov 2018) +=========================== + +* fix `#630`_ + Version 1.8.8 (01 Nov 2018) =========================== @@ -187,58 +192,13 @@ Version 1.5 * minor tweaks: romanz, you21979, SuBPaR42, sangaman, wakiyamap, DaShak -Version 1.4.3 -============= - -* Fix `#442`_. - -Version 1.4.2 -============= - -* proxy remote IP reported properly if :envvar:`FORCE_PROXY` is set. - Fixes `#301`_. -* requires aiorpcx 0.5.5 - -Version 1.4.1 -============= - -* minor bugfixes - cleaner shutdown; group handling -* set PROTOCOL_MIN to 1.0; this will prevent 2.9.x clients from connecting - and encourage upgrades to more recent clients without the security hole -* requires aiorpcx 0.5.4 - -Version 1.4 -=========== - -* switch to `aiorpcX `_ for all - networking, ``JSON RPC`` and proxy handling -* proxy detection improvements -* `documentation `_ rewrite -* new environment variable :envvar:`LOG_FORMAT` to control logging format -* new environment variable :envvar:`DROP_CLIENT` to cut off unsupported - client software -* coin updates: Litecoin (pooler), bitbayd (kongeo), BTG (wilsonmeier), - danny91, wakiyamap, snowgem, Dash (theLazier), fujicoin -* new coins: Decred (cipherzzz), axe (-k), -* typo fixes (dax, romanz) - -.. note:: the Dash-specific undocumented ``masternode.subscribe()`` - RPC call was not following the JSON RPC spec; this was shown up by - the switch to aiorpcX. I had to modify the code but it may break - Dash clients. - - The Decred implementation doesn't work on mainnet; I will remove it - if this remains unfixed. - **Neil Booth** kyuupichan@gmail.com https://github.com/kyuupichan bitcoincash:qzxpdlt8ehu9ehftw6rqsy2jgfq4nsltxvhrdmdfpn .. _#258: https://github.com/kyuupichan/electrumx/issues/258 -.. _#301: https://github.com/kyuupichan/electrumx/issues/301 .. _#315: https://github.com/kyuupichan/electrumx/issues/315 .. _#414: https://github.com/kyuupichan/electrumx/issues/414 -.. _#442: https://github.com/kyuupichan/electrumx/issues/442 .. _#443: https://github.com/kyuupichan/electrumx/issues/443 .. _#455: https://github.com/kyuupichan/electrumx/issues/455 .. _#479: https://github.com/kyuupichan/electrumx/issues/479 @@ -261,3 +221,4 @@ bitcoincash:qzxpdlt8ehu9ehftw6rqsy2jgfq4nsltxvhrdmdfpn .. _#577: https://github.com/kyuupichan/electrumx/issues/577 .. _#603: https://github.com/kyuupichan/electrumx/issues/603 .. _#608: https://github.com/kyuupichan/electrumx/issues/608 +.. _#630: https://github.com/kyuupichan/electrumx/issues/630 diff --git a/docs/conf.py b/docs/conf.py index d29f8e94c..b5ccd9dc3 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -15,7 +15,7 @@ import os import sys sys.path.insert(0, os.path.abspath('..')) -VERSION="ElectrumX 1.8.8" +VERSION="ElectrumX 1.8.9" # -- Project information ----------------------------------------------------- diff --git a/electrumx/__init__.py b/electrumx/__init__.py index 30461f7ba..70efefd8d 100644 --- a/electrumx/__init__.py +++ b/electrumx/__init__.py @@ -1,4 +1,4 @@ -version = 'ElectrumX 1.8.8' +version = 'ElectrumX 1.8.9' version_short = version.split()[-1] from electrumx.server.controller import Controller diff --git a/setup.py b/setup.py index 71bce8fcb..feb91423f 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ import setuptools -version = '1.8.8' +version = '1.8.9' setuptools.setup( name='electrumX',