diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index e3772edcf63d..530f826334d3 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -4,23 +4,16 @@ The Electrum ABC software is NOT affiliated, associated, or endorsed by Electron Cash, electroncash.org, Electrum or electrum.org. -# Usage - -When you first run Electrum ABC it will use a different configuration -directory to Electron Cash. On Unix it is ".electrum-abc", and on Windows/MacOS -it is "ElectrumABC". Your wallet files will be copied from the Electron Cash -configuration directory if found. - -Initially transactions will show up as unverified because -Electrum ABC is downloading the blockchain headers to verify the transactions. -This can take up to 10 minutes, but is only done once. +# Release notes -We STRONGLY recommend you get comfortable and only send a small amount of eCash -coins at first, to yourself, to confirm the network is processing your -transactions as expected. +## Release 5.2.3 +- Fix `--portable` command line option (#288). +- Add cryptocompare.com as an exchange rate API (#284). +- Don't bundle Tor with the binary release files, download it when + a user first enables Tor (#279). +- Electrum backports: bump pyinstaller, misc (#280). -# Release notes ## Release 5.2.2 diff --git a/electrumabc/version.py b/electrumabc/version.py index ca222890d78d..ede97080fbf3 100644 --- a/electrumabc/version.py +++ b/electrumabc/version.py @@ -1,7 +1,7 @@ import re # version of the client package -VERSION_TUPLE = (5, 2, 2) +VERSION_TUPLE = (5, 2, 3) PACKAGE_VERSION = ".".join(map(str, VERSION_TUPLE)) # protocol version requested PROTOCOL_VERSION = "1.4"