Prepare 1.7

This commit is contained in:
Neil Booth 2018-07-25 22:47:43 +08:00
parent 7a3938be23
commit 9b23fbc747
4 changed files with 10 additions and 8 deletions

View File

@ -7,14 +7,16 @@
and memory consumption whilst serving clients. Those problems and memory consumption whilst serving clients. Those problems
should not occur with Python 3.7. should not occur with Python 3.7.
Version 1.7 (in progress) Version 1.7 (25 Jul 2018)
========================== ==========================
Version 1.6.1 (in progress) * completely overhauled mempool and address notifications
============================ implementation. Cleaner and a lot more efficient, especially for
initial synchronization of the mempool. Mempool handling is fully
asynchronous and doesn't hinder client responses or block
processing.
* peer discovery cleaned up, more work remains
* cleaner shutdown process with clear guarantees * cleaner shutdown process with clear guarantees
* cleaner mempool and notification handling
* aiohttp min version requirement raised to 2.0 * aiohttp min version requirement raised to 2.0
* onion peers are ignored if no tor proxy is available * onion peers are ignored if no tor proxy is available
* add Motion coin (ocruzv), MinexCoin (joesixpack) * add Motion coin (ocruzv), MinexCoin (joesixpack)

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.6" VERSION="ElectrumX 1.7"
# -- Project information ----------------------------------------------------- # -- Project information -----------------------------------------------------

View File

@ -1,4 +1,4 @@
version = 'ElectrumX 1.6d' version = 'ElectrumX 1.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

@ -1,5 +1,5 @@
import setuptools import setuptools
version = '1.6' version = '1.7'
setuptools.setup( setuptools.setup(
name='electrumX', name='electrumX',