Prepare 1.8.7

This commit is contained in:
Neil Booth 2018-09-13 09:46:37 +01:00
parent f76e8b0a44
commit fac32c4903
5 changed files with 12 additions and 6 deletions

View File

@ -8,6 +8,12 @@
should not occur with Python 3.7. should not occur with Python 3.7.
Version 1.8.7 (13 Sep 2018)
===========================
* require aiorpcX 0.8.1
* fix reorg bug loading blocks from disk (erasmospunk)
Version 1.8.6 (12 Sep 2018) Version 1.8.6 (12 Sep 2018)
=========================== ===========================

View File

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

View File

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

View File

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

View File

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