diff --git a/README.rst b/README.rst index e1837b4..4b3c24f 100644 --- a/README.rst +++ b/README.rst @@ -133,6 +133,29 @@ Roadmap ChangeLog ========= +Version 1.1pre1 +--------------- + +Many changes, mostly to prepare for support of Electrum protocol 1.1 +which the next Electrum client release will use. + +*NOTE*: the **COIN** environment variable is now mandatory, and if you +were running for any bitcoin flavour (Cash, Segwit, mainnet or +testnet) you will need to update your environment variable settings as +the old ones will no longer work. + +- implement protocol version 1.1 and update protocol documentation +- rework lib/coins.py for the various bitcoin flavours +- show protocol version in "seessions" ElectrumX RPC call +- permit **HOST** envvar to be a comma-separated list +- daemon abstraction refactoring (erasmospunk) +- permit alternative event loop policies (based on suggestion / work + of JustinTArthur) +- misc configuration updates (SubPar) +- add Neblio support (neblioteam) and Bitbay (anoxxxy) +- HOTO.rst update for running on priveleged port (EagleTM) +- issues closed: exclude test dirs from installation (`#223`_). + Version 1.0.17 -------------- diff --git a/server/version.py b/server/version.py index 143a3b2..de19852 100644 --- a/server/version.py +++ b/server/version.py @@ -1,5 +1,5 @@ # Server name and protocol versions -VERSION = 'ElectrumX 1.0.17' +VERSION = 'ElectrumX 1.1pre1' PROTOCOL_MIN = '0.9' PROTOCOL_MAX = '1.1'