From 5e5f97c2a32eb9cf32025e6f945fa8120cb2602b Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Fri, 15 Mar 2019 10:00:58 +0800 Subject: [PATCH] Prepare 1.10.0 --- docs/changelog.rst | 13 +++++++++++++ electrumx/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index f81ace5..e03163e 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -8,6 +8,18 @@ should not occur with Python 3.7. +Version 1.10.0 (15 Mar 2019) +============================ + +* extra countermeasures to limit BTC phishing effectiveness (ghost43) +* peers: mark blacklisted peers bad; force retry blacklisted peers (ghost43) +* coin additions / updates: Monacoin (wakiyamap), Sparks (Mircea Rila), ColossusXT, + Polis, MNPCoin, Zcoin, GINCoin (cronos), Grosetlcoin (gruve-p), Dash (konez2k), + Bitsend (David), Ravencoin (standard-error), Onixcoin (Jose Estevez), SnowGem +* coin removals: Gobyte, Moneci (cronos) +* minor tweaks by d42 +* issues fixed `#660`_ - unclean shutdowns during initial sync + Version 1.9.5 (08 Feb 2019) =========================== @@ -177,6 +189,7 @@ Version 1.8 (06 Aug 2018) .. _#632: https://github.com/kyuupichan/electrumx/issues/630 .. _#653: https://github.com/kyuupichan/electrumx/issues/653 .. _#655: https://github.com/kyuupichan/electrumx/issues/655 +.. _#660: https://github.com/kyuupichan/electrumx/issues/660 .. _#684: https://github.com/kyuupichan/electrumx/issues/684 .. _#713: https://github.com/kyuupichan/electrumx/issues/713 .. _#727: https://github.com/kyuupichan/electrumx/issues/727 diff --git a/electrumx/__init__.py b/electrumx/__init__.py index ede1539..f851b33 100644 --- a/electrumx/__init__.py +++ b/electrumx/__init__.py @@ -1,4 +1,4 @@ -version = 'ElectrumX 1.9.5' +version = 'ElectrumX 1.10.0' version_short = version.split()[-1] from electrumx.server.controller import Controller diff --git a/setup.py b/setup.py index d691dde..1a7ae25 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ import setuptools -version = '1.9.5' +version = '1.10.0' setuptools.setup( name='electrumX',