Prepare 1.7.3

This commit is contained in:
Neil Booth 2018-08-01 10:49:42 +09:00
parent 6c3cce5705
commit aa1f43b6be
4 changed files with 9 additions and 3 deletions

View File

@ -7,6 +7,11 @@
and memory consumption whilst serving clients. Those problems
should not occur with Python 3.7.
Version 1.7.2 (01 Aug 2018)
============================
* fix `#538`_
Version 1.7.2 (29 Jul 2018)
============================
@ -178,3 +183,4 @@ bitcoincash:qzxpdlt8ehu9ehftw6rqsy2jgfq4nsltxvhrdmdfpn
.. _#519: https://github.com/kyuupichan/electrumx/issues/519
.. _#523: https://github.com/kyuupichan/electrumx/issues/523
.. _#534: https://github.com/kyuupichan/electrumx/issues/534
.. _#538: https://github.com/kyuupichan/electrumx/issues/538

View File

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

View File

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

View File

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