diff --git a/docs/changelog.rst b/docs/changelog.rst index 88d076b..7b317e5 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -8,6 +8,12 @@ should not occur with Python 3.7. +Version 1.9.3 (05 Feb 2019) +=========================== + +* ignore potential sybil peers +* coin additions / updates: BitcoinCashABC (cculianu), Monacoin (wakiyamap) + Version 1.9.2 (03 Feb 2019) =========================== diff --git a/docs/conf.py b/docs/conf.py index 0091ff3..d5e6445 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.2" +VERSION="ElectrumX 1.9.3" # -- Project information ----------------------------------------------------- diff --git a/electrumx/__init__.py b/electrumx/__init__.py index 068c8f1..13be06e 100644 --- a/electrumx/__init__.py +++ b/electrumx/__init__.py @@ -1,4 +1,4 @@ -version = 'ElectrumX 1.9.2' +version = 'ElectrumX 1.9.3' version_short = version.split()[-1] from electrumx.server.controller import Controller diff --git a/setup.py b/setup.py index 2a20302..2b61625 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ import setuptools -version = '1.9.2' +version = '1.9.3' setuptools.setup( name='electrumX',