Skip to content

Commit

Permalink
Prepare 1.15
Browse files Browse the repository at this point in the history
  • Loading branch information
Neil Booth committed May 27, 2020
1 parent 4553407 commit 835aa49
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 4 deletions.
18 changes: 18 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,29 @@
ChangeLog
===========

.. note:: Version 1.15.0 will be the final ElectrumX release with altcoin support, future
releases will be Bitcoin-only. ElectrumX needs to scale quickly and support for
various other coins and their idiosyncracies is distracting and unhelpful. Anyone
wishing to maintain an ElectrumX repository with altcoin support is free to do so as
explained in the licence.

.. note:: It is strongly recommended you upgrade to Python 3.7, which
fixes bugs in asyncio that caused an ever-growing open file count
and memory consumption whilst serving clients. Those problems
should not occur with Python 3.7.


Version 1.15.0 (27 May 2020)
============================

* switch to 5-byte txnums to handle larger blockchains. Upgrade DBs during restart.
* accurate clearing of stale caches
* coin additions / updates: NavCoin + Hush + VersusCoin + Zero (cipig), DashRegtest (colmenero),
Quebecoin (morinpa), Primecoin (Sunny King), multiple (Panagiotis David), RVN (standard-error),
Sumcoin
* other: Jeremy Rand, Jin Eguchi, ddude, Jonathan Cross, Carsen Klock, cipig


Version 1.14.0 (19 Jan 2020)
============================

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@
import os
import sys
sys.path.insert(0, os.path.abspath('..'))
VERSION="ElectrumX 1.14.0"
VERSION="ElectrumX 1.15.0"

# -- Project information -----------------------------------------------------

project = 'ElectrumX'
copyright = '2016-2018, Neil Booth'
copyright = '2016-2020, Neil Booth'
author = 'Neil Booth'

# The full version including branding
Expand Down
2 changes: 1 addition & 1 deletion electrumx/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = 'ElectrumX 1.14.0'
version = 'ElectrumX 1.15.0'
version_short = version.split()[-1]

from electrumx.server.controller import Controller
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import setuptools
version = '1.14.0'
version = '1.15.0'

setuptools.setup(
name='electrumX',
Expand Down

0 comments on commit 835aa49

Please sign in to comment.