From e1e4129e17f6b9fe9d2b833f9f9d08edebf31c0f Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Fri, 13 Jul 2018 18:11:04 +0800 Subject: [PATCH] Prepare 1.5.1 --- docs/changelog.rst | 10 ++++++++++ docs/conf.py | 2 +- electrumx/server/version.py | 2 +- setup.py | 2 +- 4 files changed, 13 insertions(+), 3 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index b5c8ce6..6feb6de 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -7,6 +7,16 @@ and memory consumption whilst serving clients. Those problems should not occur with Python 3.7. +Version 1.5.1 +============= + +Fixes a couple of issues found in 1.5 after release: + +* update peer discovery code for :ref:`version 1.3` of the protocol +* setup.py would not run in a clean environment (e.g. virtualenv) +* logging via aiorpcX didn't work with the logging hierarchy updates +* log Python interpreter version on startup + Version 1.5 =========== diff --git a/docs/conf.py b/docs/conf.py index 904f77d..d4ec02f 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="1.5" +VERSION="1.5.1" # -- Project information ----------------------------------------------------- diff --git a/electrumx/server/version.py b/electrumx/server/version.py index a221768..58fc3c2 100644 --- a/electrumx/server/version.py +++ b/electrumx/server/version.py @@ -1 +1 @@ -VERSION = 'ElectrumX 1.5' +VERSION = 'ElectrumX 1.5.1' diff --git a/setup.py b/setup.py index 13bd117..0340334 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ import setuptools -version = '1.5' +version = '1.5.1' setuptools.setup( name='electrumX-kyuupichan',