Prepare 1.5.2
This commit is contained in:
parent
73a46df17f
commit
997a1be377
@ -7,6 +7,13 @@
|
|||||||
and memory consumption whilst serving clients. Those problems
|
and memory consumption whilst serving clients. Those problems
|
||||||
should not occur with Python 3.7.
|
should not occur with Python 3.7.
|
||||||
|
|
||||||
|
Version 1.5.2
|
||||||
|
=============
|
||||||
|
|
||||||
|
* package renamed from elctrumX-kyuupichan to electrumX
|
||||||
|
* split merkle logic out into lib/merkle.py
|
||||||
|
* fix `#523`_ for daemons based on older releases of core
|
||||||
|
|
||||||
Version 1.5.1
|
Version 1.5.1
|
||||||
=============
|
=============
|
||||||
|
|
||||||
@ -154,3 +161,4 @@ bitcoincash:qzxpdlt8ehu9ehftw6rqsy2jgfq4nsltxvhrdmdfpn
|
|||||||
.. _#502: https://github.com/kyuupichan/electrumx/issues/50
|
.. _#502: https://github.com/kyuupichan/electrumx/issues/50
|
||||||
.. _#506: https://github.com/kyuupichan/electrumx/issues/506
|
.. _#506: https://github.com/kyuupichan/electrumx/issues/506
|
||||||
.. _#519: https://github.com/kyuupichan/electrumx/issues/519
|
.. _#519: https://github.com/kyuupichan/electrumx/issues/519
|
||||||
|
.. _#523: https://github.com/kyuupichan/electrumx/issues/523
|
||||||
|
|||||||
@ -15,7 +15,7 @@
|
|||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
sys.path.insert(0, os.path.abspath('..'))
|
sys.path.insert(0, os.path.abspath('..'))
|
||||||
VERSION="1.5.1"
|
VERSION="1.5.2"
|
||||||
|
|
||||||
# -- Project information -----------------------------------------------------
|
# -- Project information -----------------------------------------------------
|
||||||
|
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
VERSION = 'ElectrumX 1.5.1'
|
VERSION = 'ElectrumX 1.5.2'
|
||||||
|
|||||||
4
setup.py
4
setup.py
@ -1,8 +1,8 @@
|
|||||||
import setuptools
|
import setuptools
|
||||||
version = '1.5.1'
|
version = '1.5.2'
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name='electrumX-kyuupichan',
|
name='electrumX',
|
||||||
version=version,
|
version=version,
|
||||||
scripts=['electrumx_server', 'electrumx_rpc'],
|
scripts=['electrumx_server', 'electrumx_rpc'],
|
||||||
python_requires='>=3.6',
|
python_requires='>=3.6',
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user