diff --git a/docs/changelog.rst b/docs/changelog.rst index 79115ac..f81ace5 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -8,6 +8,14 @@ should not occur with Python 3.7. +Version 1.9.5 (08 Feb 2019) +=========================== + +* server blacklist logic (ecdsa) +* require aiorpcX 0.10.4 +* remove dead wallet code +* fix `#727`_ - not listing same peer twice + Version 1.9.4 (07 Feb 2019) =========================== diff --git a/docs/conf.py b/docs/conf.py index 16235a1..cb93a48 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -15,7 +15,7 @@ import os import sys sys.path.insert(0, os.path.abspath('..')) -VERSION="ElectrumX 1.9.4" +VERSION="ElectrumX 1.9.5" # -- Project information ----------------------------------------------------- diff --git a/electrumx/__init__.py b/electrumx/__init__.py index bc76be5..ede1539 100644 --- a/electrumx/__init__.py +++ b/electrumx/__init__.py @@ -1,4 +1,4 @@ -version = 'ElectrumX 1.9.4' +version = 'ElectrumX 1.9.5' version_short = version.split()[-1] from electrumx.server.controller import Controller diff --git a/setup.py b/setup.py index b61d2c9..d691dde 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ import setuptools -version = '1.9.4' +version = '1.9.5' setuptools.setup( name='electrumX',