From c65ad772e995ba2bbbb69b1e535f7f87dc4aaf59 Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Mon, 5 Nov 2018 16:29:38 -0400 Subject: [PATCH] Prepare 1.8.10 --- 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 d3f6256..0213861 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -16,6 +16,13 @@ Bitcoin XT with CToR disabled. +Version 1.8.10 (05 Nov 2018) +============================ + +* require aiorpcX 0.10.0 +* fix `#632`_ +* coin additions / updates: ZelCash (TheTrunk) + Version 1.8.9 (02 Nov 2018) =========================== @@ -222,3 +229,4 @@ bitcoincash:qzxpdlt8ehu9ehftw6rqsy2jgfq4nsltxvhrdmdfpn .. _#603: https://github.com/kyuupichan/electrumx/issues/603 .. _#608: https://github.com/kyuupichan/electrumx/issues/608 .. _#630: https://github.com/kyuupichan/electrumx/issues/630 +.. _#632: https://github.com/kyuupichan/electrumx/issues/630 diff --git a/docs/conf.py b/docs/conf.py index b5ccd9d..00dd028 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.9" +VERSION="ElectrumX 1.8.10" # -- Project information ----------------------------------------------------- diff --git a/electrumx/__init__.py b/electrumx/__init__.py index 70efefd..3643417 100644 --- a/electrumx/__init__.py +++ b/electrumx/__init__.py @@ -1,4 +1,4 @@ -version = 'ElectrumX 1.8.9' +version = 'ElectrumX 1.8.10' version_short = version.split()[-1] from electrumx.server.controller import Controller diff --git a/setup.py b/setup.py index 897f4e7..10f664c 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ import setuptools -version = '1.8.9' +version = '1.8.10' setuptools.setup( name='electrumX',