Browse Source

Prepare 1.9.2

patch-2
Neil Booth 6 years ago
parent
commit
d02ae979b1
  1. 12
      docs/changelog.rst
  2. 2
      docs/conf.py
  3. 2
      electrumx/__init__.py
  4. 2
      setup.py

12
docs/changelog.rst

@ -8,6 +8,18 @@
should not occur with Python 3.7.
Version 1.9.2 (03 Feb 2019)
===========================
* restore protocol version 1.2 and send a warning for old BTC Electrum clients that they
need to upgrade. This is an attempt to protect users of old versions of Electrum from
the ongoing phishing attacks
* increase default MAX_SEND for AuxPow Chains. Truncate AuxPow for block heights covered
by a checkpoint. (jeremyrand)
* coin additions / updates: NMC (jeremyrand), Dash (zebra-lucky), PeerCoin (peerchemist),
BCH testnet (Mark Lundeberg), Unitus (ChekaZ)
* tighter RPC param checking (ghost43)
Version 1.9.1 (11 Jan 2019)
===========================

2
docs/conf.py

@ -15,7 +15,7 @@
import os
import sys
sys.path.insert(0, os.path.abspath('..'))
VERSION="ElectrumX 1.9.1"
VERSION="ElectrumX 1.9.2"
# -- Project information -----------------------------------------------------

2
electrumx/__init__.py

@ -1,4 +1,4 @@
version = 'ElectrumX 1.9.1'
version = 'ElectrumX 1.9.2'
version_short = version.split()[-1]
from electrumx.server.controller import Controller

2
setup.py

@ -1,5 +1,5 @@
import setuptools
version = '1.9.1'
version = '1.9.2'
setuptools.setup(
name='electrumX',

Loading…
Cancel
Save