From 95ea557b1d2748ff6e8890a45847eeab684fafbc Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Wed, 12 Sep 2018 17:21:59 +0100 Subject: [PATCH] Prepare 1.8.6 --- docs/changelog.rst | 8 ++++++++ docs/conf.py | 2 +- electrumx/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 8b5276d..cebbdef 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -8,6 +8,14 @@ should not occur with Python 3.7. +Version 1.8.6 (12 Sep 2018) +=========================== + +* require aiorpcX 0.8.0 +* suppress socket.send() errors +* new coin TokenPay (samfiragabriel) +* minor fix: wakiyamap + Version 1.8.5 (18 Aug 2018) =========================== diff --git a/docs/conf.py b/docs/conf.py index 725e6f8..9a0c937 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.8.5" +VERSION="ElectrumX 1.8.6" # -- Project information ----------------------------------------------------- diff --git a/electrumx/__init__.py b/electrumx/__init__.py index 181b299..8580791 100644 --- a/electrumx/__init__.py +++ b/electrumx/__init__.py @@ -1,4 +1,4 @@ -version = 'ElectrumX 1.8.5' +version = 'ElectrumX 1.8.6' version_short = version.split()[-1] from electrumx.server.controller import Controller diff --git a/setup.py b/setup.py index fb96b5b..4bda85f 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ import setuptools -version = '1.8.5' +version = '1.8.6' setuptools.setup( name='electrumX',