From 39e4d756e5c24476d8dfc01ffe203a962c48bdb8 Mon Sep 17 00:00:00 2001 From: PiRK Date: Mon, 19 Jun 2023 12:40:04 +0200 Subject: [PATCH] bump version to 5.2.4 and add release notes --- RELEASE-NOTES.md | 11 +++++++++++ electrumabc/version.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 530f826334d3..03ebec47b3d4 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -6,6 +6,17 @@ Electron Cash, electroncash.org, Electrum or electrum.org. # Release notes +## Release 5.2.4 + +- Fix integer overflow for displaying the amount for selected coins (#291). +- Fix a bug when loading an wallet file containing CashAccount contacts (#295). +- Fix bug preventing to freeze or unfreeze multiple coins at once (#297). +- Allow preserving the order of outputs in a transaction when it has an + OP_RETURN output, for advanced use cases such as manually building SLP + transactions (#298). +- Code and build toolchain cleanup (#292, #293, #294, #299). + + ## Release 5.2.3 - Fix `--portable` command line option (#288). diff --git a/electrumabc/version.py b/electrumabc/version.py index ede97080fbf3..165778938011 100644 --- a/electrumabc/version.py +++ b/electrumabc/version.py @@ -1,7 +1,7 @@ import re # version of the client package -VERSION_TUPLE = (5, 2, 3) +VERSION_TUPLE = (5, 2, 4) PACKAGE_VERSION = ".".join(map(str, VERSION_TUPLE)) # protocol version requested PROTOCOL_VERSION = "1.4"