Skip to content

Commit

Permalink
[electrum] bump the version to 5.2.14 and add release notes
Browse files Browse the repository at this point in the history
Summary: As per title

Test Plan: `python setup.py --version`

Reviewers: #bitcoin_abc, Fabien

Reviewed By: #bitcoin_abc, Fabien

Differential Revision: https://reviews.bitcoinabc.org/D16422
  • Loading branch information
PiRK authored and abc-bot committed Jul 4, 2024
1 parent 4c40abf commit 234ad92
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Release notes

## Release 5.2.14

- Fix a potential OOM crash when opening a BIP72 URI pointing to a very
large file. Electrum ABC will stop downloading the payment request if
it exceeds a maximum size of 50kB (D16415).
- Support the latest version 0.13.9 of the trezor library (D16406).
- Fix decoding of transaction inputs with non-multisig p2sh scriptsigs
(D16391).


## Release 5.2.13

- Fix support for recent versions (> 2.4.1) of the Ledger apps (D16362).
Expand Down
2 changes: 1 addition & 1 deletion electrumabc/version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import re

# version of the client package
VERSION_TUPLE = (5, 2, 13)
VERSION_TUPLE = (5, 2, 14)
PACKAGE_VERSION = ".".join(map(str, VERSION_TUPLE))
# protocol version requested
PROTOCOL_VERSION = "1.4"
Expand Down

0 comments on commit 234ad92

Please sign in to comment.