diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 988ceb25..281abefd 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -1,3 +1,25 @@ +# Release 2.3 +* Improved logic for the network layer. +* More efficient coin selection. Spend oldest coins first, and + minimize the number of transaction inputs. +* Plugins are independent from the GUI. For example, the openalias + plugin can be used with the command line, as follows: + ./electrum payto +* The command line has been refactored: + - arguments are parsed with argparse. + - the help was improved and includes options +* The command line accepts the '!' shortcut to send the maximum amount. + Example: mktx ! --from +* The command line also accepts a '?' shortcut for private keys + arguments, that triggers a prompt. +* Payment requests can be managed with the command line, using the + following commands: addrequest, rmrequest, listrequests. +* Payment requests can be signed with a SSL certificate, and published + in a public web directory. 'electrum addrequest -h' shows the + relevant configuration variables. +* Commands can be called with a new jsonrpc interface; the jsonrpc + interface may be used on a webserver in combination with php. + # Release 2.2 * Show amounts (thousands separators and decimal point) according to locale in GUI diff --git a/lib/version.py b/lib/version.py index 5572e9e2..532fe57b 100644 --- a/lib/version.py +++ b/lib/version.py @@ -1,4 +1,4 @@ -ELECTRUM_VERSION = "2.2" # version of the client package +ELECTRUM_VERSION = "2.3" # version of the client package PROTOCOL_VERSION = '0.9' # protocol version requested NEW_SEED_VERSION = 11 # electrum versions >= 2.0 OLD_SEED_VERSION = 4 # electrum versions < 2.0