Skip to content

Commit

Permalink
[electrum] bump the version to 5.2.6 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`

Run `./electrum-abc` and verify the correct version is displayed in the application (main window title and menu Help > About)

Reviewers: #bitcoin_abc, Fabien

Reviewed By: #bitcoin_abc, Fabien

Differential Revision: https://reviews.bitcoinabc.org/D14301
  • Loading branch information
PiRK committed Jul 24, 2023
1 parent ffcc861 commit d5fa945
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Release notes

## Release 5.2.6

- Increase the maximum number of concurrent get_merkle network requests to speed
up the initial verification of the transaction history for wallets with a
large history (D14123).
- Write unencrypted wallet files using compact JSON. This reduces the file size
by about 20% and increases the speed of the operation by about 100% (D14234).
- Use faster compression settings when saving encrypted wallets to increase the
speed of the operation by about 80% (D14235).
- Significantly improve the speed of building transactions in wallets with many
coins per address. This reduces GUI freezing when interacting with the "Send"
tab for such wallets (D14249).
- Improve the functional tests (D14273, D14274, D14276, D14278, D14293).
- Improve the developer documentation (D14142, D14259, D14285).
- Electron Cash backport:
- Fix the QR code scanner for the Linux AppImage release (D14284)


## Release 5.2.5

- Fix a bug breaking the application when installed with the Windows installer.
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, 5)
VERSION_TUPLE = (5, 2, 6)
PACKAGE_VERSION = ".".join(map(str, VERSION_TUPLE))
# protocol version requested
PROTOCOL_VERSION = "1.4"
Expand Down

0 comments on commit d5fa945

Please sign in to comment.