Skip to content

Commit fac32c4

Browse files
author
Neil Booth
committed
Prepare 1.8.7
1 parent f76e8b0 commit fac32c4

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

docs/changelog.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@
88
should not occur with Python 3.7.
99

1010

11+
Version 1.8.7 (13 Sep 2018)
12+
===========================
13+
14+
* require aiorpcX 0.8.1
15+
* fix reorg bug loading blocks from disk (erasmospunk)
16+
1117
Version 1.8.6 (12 Sep 2018)
1218
===========================
1319

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.6"
18+
VERSION="ElectrumX 1.8.7"
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.6'
1+
version = 'ElectrumX 1.8.7'
22
version_short = version.split()[-1]
33

44
from electrumx.server.controller import Controller

electrumx/server/controller.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ async def serve(self, shutdown_event):
8080
'''Start the RPC server and wait for the mempool to synchronize. Then
8181
start serving external clients.
8282
'''
83-
if not (0, 8, 0) <= aiorpcx_version < (0, 9):
84-
raise RuntimeError('aiorpcX version 0.8.x required')
83+
if not (0, 8, 1) <= aiorpcx_version < (0, 9):
84+
raise RuntimeError('aiorpcX version 0.8.x with x >= 1 required')
8585

8686
env = self.env
8787
min_str, max_str = env.coin.SESSIONCLS.protocol_min_max_strings()

setup.py

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

44
setuptools.setup(
55
name='electrumX',
@@ -12,7 +12,7 @@
1212
# "blake256" package is required to sync Decred network.
1313
# "xevan_hash" package is required to sync Xuez network.
1414
# "groestlcoin_hash" package is required to sync Groestlcoin network.
15-
install_requires=['aiorpcX>=0.8.0,<0.9', 'attrs',
15+
install_requires=['aiorpcX>=0.8.1,<0.9', 'attrs',
1616
'plyvel', 'pylru', 'aiohttp >= 2'],
1717
packages=setuptools.find_packages(include=('electrumx*',)),
1818
description='ElectrumX Server',

0 commit comments

Comments
 (0)