diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 1cedbb875..9ef5275b0 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -1,3 +1,23 @@ +# Release 4.1.3 - (June 16, 2021) + * Builds/binaries: + - Android: the binaries (APKs) should now be reproducible (#7263) + - AppImage: fix some startup issues by including libxcb deps (#7198) + * Lightning: + - smarter LN pathfinding (if trampoline is disabled): + - estimate liquidity in channels using previous attempts (#7152) + - consider inflight HTLCs and try to route around them (#7292) + - bugfix: add more safety checks to avoid "batch RBF" feature + merging LN funding txs (#7298) + - remove HTLC value upper limit of ~42 mBTC (#7328) + - Kivy GUI: implement freezing LN channels (11bb39ee) + * imported wallets: when enabling the "Use change addresses" option, + change will now be sent to a random unused imported address. (#7330) + As before, by default, change is sent back to the "from address". + * seed generation: make sure newly created electrum seeds don't have + correct bip39 checksum by chance (#6001) + * other minor fixes + + # Release 4.1.2 - (April 8, 2021) * Qt GUI: - fix some crashes when exiting (#6889) diff --git a/electrum/version.py b/electrum/version.py index 0c82ddcf1..fa3fe807b 100644 --- a/electrum/version.py +++ b/electrum/version.py @@ -1,5 +1,5 @@ -ELECTRUM_VERSION = '4.1.2' # version of the client package -APK_VERSION = '4.1.2.0' # read by buildozer.spec +ELECTRUM_VERSION = '4.1.3' # version of the client package +APK_VERSION = '4.1.3.0' # read by buildozer.spec PROTOCOL_VERSION = '1.4' # protocol version requested