Prepare 1.8.11

This commit is contained in:
Neil Booth 2018-11-08 07:29:11 -04:00
parent dbd1483ad9
commit 58ab55ffe0
5 changed files with 10 additions and 6 deletions

View File

@ -15,6 +15,10 @@
non-CToR daemon, such as Bitcoin SV, and Bitcoin Unlimited /
Bitcoin XT with CToR disabled.
Version 1.8.11 (07 Nov 2018)
============================
* require aiorpcX 0.10.1
Version 1.8.10 (05 Nov 2018)
============================

View File

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

View File

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

View File

@ -82,8 +82,8 @@ class Controller(ServerBase):
'''Start the RPC server and wait for the mempool to synchronize. Then
start serving external clients.
'''
if not (0, 10, 0) <= aiorpcx_version < (0, 11):
raise RuntimeError('aiorpcX version 0.10.x required')
if not (0, 10, 1) <= aiorpcx_version < (0, 11):
raise RuntimeError('aiorpcX version 0.10.x, x >= 1, required')
env = self.env
min_str, max_str = env.coin.SESSIONCLS.protocol_min_max_strings()

View File

@ -1,5 +1,5 @@
import setuptools
version = '1.8.10'
version = '1.8.11'
setuptools.setup(
name='electrumX',
@ -12,7 +12,7 @@ setuptools.setup(
# "blake256" package is required to sync Decred network.
# "xevan_hash" package is required to sync Xuez network.
# "groestlcoin_hash" package is required to sync Groestlcoin network.
install_requires=['aiorpcX>=0.10.0,<0.11', 'attrs',
install_requires=['aiorpcX>=0.10.1,<0.11', 'attrs',
'plyvel', 'pylru', 'aiohttp >= 2'],
packages=setuptools.find_packages(include=('electrumx*',)),
description='ElectrumX Server',