diff --git a/README.rst b/README.rst index f0fc274..a047c59 100644 --- a/README.rst +++ b/README.rst @@ -136,6 +136,12 @@ version for the release of 1.0. ChangeLog ========= +Version 0.11.1 +-------------- + +* report unconfirmed parent tx status correctly, and notify if that + parent status changes. Fixes `#129`_. + Version 0.11.0 -------------- @@ -332,6 +338,7 @@ stability please stick with the 0.9 series. .. _#110: https://github.com/kyuupichan/electrumx/issues/110 .. _#111: https://github.com/kyuupichan/electrumx/issues/111 .. _#126: https://github.com/kyuupichan/electrumx/issues/126 +.. _#129: https://github.com/kyuupichan/electrumx/issues/129 .. _docs/HOWTO.rst: https://github.com/kyuupichan/electrumx/blob/master/docs/HOWTO.rst .. _docs/ENVIRONMENT.rst: https://github.com/kyuupichan/electrumx/blob/master/docs/ENVIRONMENT.rst .. _docs/PEER_DISCOVERY.rst: https://github.com/kyuupichan/electrumx/blob/master/docs/PEER_DISCOVERY.rst diff --git a/server/version.py b/server/version.py index afe380c..dc16389 100644 --- a/server/version.py +++ b/server/version.py @@ -1,5 +1,5 @@ # Server name and protocol versions -VERSION = 'ElectrumX 0.11.0' +VERSION = 'ElectrumX 0.11.1' PROTOCOL_MIN = '1.0' PROTOCOL_MAX = '1.0'