Skip to content

Commit 58ab55f

Browse files
author
Neil Booth
committed
Prepare 1.8.11
1 parent dbd1483 commit 58ab55f

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

docs/changelog.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@
1515
non-CToR daemon, such as Bitcoin SV, and Bitcoin Unlimited /
1616
Bitcoin XT with CToR disabled.
1717

18+
Version 1.8.11 (07 Nov 2018)
19+
============================
20+
21+
* require aiorpcX 0.10.1
1822

1923
Version 1.8.10 (05 Nov 2018)
2024
============================

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.10"
18+
VERSION="ElectrumX 1.8.11"
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.10'
1+
version = 'ElectrumX 1.8.11'
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
@@ -82,8 +82,8 @@ async def serve(self, shutdown_event):
8282
'''Start the RPC server and wait for the mempool to synchronize. Then
8383
start serving external clients.
8484
'''
85-
if not (0, 10, 0) <= aiorpcx_version < (0, 11):
86-
raise RuntimeError('aiorpcX version 0.10.x required')
85+
if not (0, 10, 1) <= aiorpcx_version < (0, 11):
86+
raise RuntimeError('aiorpcX version 0.10.x, x >= 1, required')
8787

8888
env = self.env
8989
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.10'
2+
version = '1.8.11'
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.10.0,<0.11', 'attrs',
15+
install_requires=['aiorpcX>=0.10.1,<0.11', 'attrs',
1616
'plyvel', 'pylru', 'aiohttp >= 2'],
1717
packages=setuptools.find_packages(include=('electrumx*',)),
1818
description='ElectrumX Server',

0 commit comments

Comments
 (0)