Browse Source

Prepare 1.7.3

patch-2
Neil Booth 7 years ago
parent
commit
aa1f43b6be
  1. 6
      docs/changelog.rst
  2. 2
      docs/conf.py
  3. 2
      electrumx/__init__.py
  4. 2
      setup.py

6
docs/changelog.rst

@ -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

2
docs/conf.py

@ -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 -----------------------------------------------------

2
electrumx/__init__.py

@ -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

2
setup.py

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

Loading…
Cancel
Save