Skip to content

Commit

Permalink
Prepare 1.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Neil Booth committed May 13, 2019
1 parent 142909b commit c90046b
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
10 changes: 10 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@
should not occur with Python 3.7.


Version 1.12.0 (13 May 2019)
============================

* require aiorpcX 0.18.1. This introduces websocket support. The environment variables
changed accordingly; see :envvar:`SERVICES` and :envvar:`REPORT_SERVICES`.
* work around bug in recent versions of uvloop
* aiorpcX upgrade fixes from Shane M
* coin additions / updates: BitcoinSV, Bolivarcoin (Jose Luis Estevez), BTC Testnet (ghost43),
Odin (Pixxl)

Version 1.11.0 (18 Apr 2019)
============================

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import os
import sys
sys.path.insert(0, os.path.abspath('..'))
VERSION="ElectrumX 1.11.0"
VERSION="ElectrumX 1.12.0"

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

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.11.0'
version = 'ElectrumX 1.12'
version_short = version.split()[-1]

from electrumx.server.controller import Controller
Expand Down
2 changes: 1 addition & 1 deletion electrumx/server/controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ async def serve(self, shutdown_event):
'''Start the RPC server and wait for the mempool to synchronize. Then
start serving external clients.
'''
if not (0, 18, 0) <= aiorpcx_version < (0, 19):
if not (0, 18, 1) <= aiorpcx_version < (0, 19):
raise RuntimeError('aiorpcX version 0.18.x is required')

env = self.env
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import setuptools
version = '1.11.0'
version = '1.12.0'

setuptools.setup(
name='electrumX',
version=version,
scripts=['electrumx_server', 'electrumx_rpc', 'electrumx_compact_history'],
python_requires='>=3.6',
install_requires=['aiorpcX>=0.18.0,<0.19', 'attrs',
install_requires=['aiorpcX>=0.18.1,<0.19', 'attrs',
'plyvel', 'pylru', 'aiohttp>=3.3'],
extras_require={
'rocksdb': ['python-rocksdb>=0.6.9'],
Expand Down

0 comments on commit c90046b

Please sign in to comment.