Skip to content

Commit 214fc83

Browse files
author
Neil Booth
committed
Prepare 1.8.8
1 parent c25cd22 commit 214fc83

File tree

4 files changed

+22
-3
lines changed

4 files changed

+22
-3
lines changed

docs/changelog.rst

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,23 @@
77
and memory consumption whilst serving clients. Those problems
88
should not occur with Python 3.7.
99

10+
.. note:: Bitcoin ABC developers have hastily introduced controversial
11+
changes that break ElectrumX's block processing by requiring it to
12+
be non-sequential. Unlike others with unique requirements they
13+
refused to make their code coin-specific. ElectrumX continues to
14+
require blocks be naturally ordered, and is compatible with any
15+
non-CToR daemon, such as Bitcoin SV, and Bitcoin Unlimited /
16+
Bitcoin XT with CToR disabled.
17+
18+
19+
Version 1.8.8 (01 Nov 2018)
20+
===========================
21+
22+
* require aiorpcX 0.9.0
23+
* coin additions / updates: decred (dajohi, bolapara), zcash (erasmospunk),
24+
namecoin (JeremyRand),CivX (turcol), NewYorkCoin (erasmospunk)
25+
* fix `#603`_, `#608`_
26+
* other minor fixes and changes: FMCorz
1027

1128
Version 1.8.7 (13 Sep 2018)
1229
===========================
@@ -242,3 +259,5 @@ bitcoincash:qzxpdlt8ehu9ehftw6rqsy2jgfq4nsltxvhrdmdfpn
242259
.. _#567: https://github.com/kyuupichan/electrumx/issues/567
243260
.. _#570: https://github.com/kyuupichan/electrumx/issues/570
244261
.. _#577: https://github.com/kyuupichan/electrumx/issues/577
262+
.. _#603: https://github.com/kyuupichan/electrumx/issues/603
263+
.. _#608: https://github.com/kyuupichan/electrumx/issues/608

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import os
1616
import sys
1717
sys.path.insert(0, os.path.abspath('..'))
18-
VERSION="ElectrumX 1.8.7"
18+
VERSION="ElectrumX 1.8.8"
1919

2020
# -- Project information -----------------------------------------------------
2121

electrumx/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = 'ElectrumX 1.8.7'
1+
version = 'ElectrumX 1.8.8'
22
version_short = version.split()[-1]
33

44
from electrumx.server.controller import Controller

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import setuptools
2-
version = '1.8.7'
2+
version = '1.8.8'
33

44
setuptools.setup(
55
name='electrumX',

0 commit comments

Comments
 (0)