Browse Source

Prepare 1.8.8

patch-2
Neil Booth 6 years ago
parent
commit
214fc83648
  1. 19
      docs/changelog.rst
  2. 2
      docs/conf.py
  3. 2
      electrumx/__init__.py
  4. 2
      setup.py

19
docs/changelog.rst

@ -7,6 +7,23 @@
and memory consumption whilst serving clients. Those problems
should not occur with Python 3.7.
.. note:: Bitcoin ABC developers have hastily introduced controversial
changes that break ElectrumX's block processing by requiring it to
be non-sequential. Unlike others with unique requirements they
refused to make their code coin-specific. ElectrumX continues to
require blocks be naturally ordered, and is compatible with any
non-CToR daemon, such as Bitcoin SV, and Bitcoin Unlimited /
Bitcoin XT with CToR disabled.
Version 1.8.8 (01 Nov 2018)
===========================
* require aiorpcX 0.9.0
* coin additions / updates: decred (dajohi, bolapara), zcash (erasmospunk),
namecoin (JeremyRand),CivX (turcol), NewYorkCoin (erasmospunk)
* fix `#603`_, `#608`_
* other minor fixes and changes: FMCorz
Version 1.8.7 (13 Sep 2018)
===========================
@ -242,3 +259,5 @@ bitcoincash:qzxpdlt8ehu9ehftw6rqsy2jgfq4nsltxvhrdmdfpn
.. _#567: https://github.com/kyuupichan/electrumx/issues/567
.. _#570: https://github.com/kyuupichan/electrumx/issues/570
.. _#577: https://github.com/kyuupichan/electrumx/issues/577
.. _#603: https://github.com/kyuupichan/electrumx/issues/603
.. _#608: https://github.com/kyuupichan/electrumx/issues/608

2
docs/conf.py

@ -15,7 +15,7 @@
import os
import sys
sys.path.insert(0, os.path.abspath('..'))
VERSION="ElectrumX 1.8.7"
VERSION="ElectrumX 1.8.8"
# -- Project information -----------------------------------------------------

2
electrumx/__init__.py

@ -1,4 +1,4 @@
version = 'ElectrumX 1.8.7'
version = 'ElectrumX 1.8.8'
version_short = version.split()[-1]
from electrumx.server.controller import Controller

2
setup.py

@ -1,5 +1,5 @@
import setuptools
version = '1.8.7'
version = '1.8.8'
setuptools.setup(
name='electrumX',

Loading…
Cancel
Save