Browse Source

Prepare 1.9.1

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

6
docs/changelog.rst

@ -8,6 +8,11 @@
should not occur with Python 3.7.
Version 1.9.1 (11 Jan 2019)
===========================
* fix `#684`_
Version 1.9.0 (10 Jan 2019)
===========================
@ -195,3 +200,4 @@ Version 1.6 (19 July 2018)
.. _#632: https://github.com/kyuupichan/electrumx/issues/630
.. _#653: https://github.com/kyuupichan/electrumx/issues/653
.. _#655: https://github.com/kyuupichan/electrumx/issues/655
.. _#684: https://github.com/kyuupichan/electrumx/issues/684

2
docs/conf.py

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

2
electrumx/__init__.py

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

2
setup.py

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

Loading…
Cancel
Save