From bbe4c69032bc89e43f4f6dc32e0e090beeb6188e Mon Sep 17 00:00:00 2001 From: chris-belcher Date: Thu, 5 Dec 2019 09:42:49 +0000 Subject: [PATCH] Update release-notes and version numbers for 0.2.0 --- electrumpersonalserver/server/common.py | 2 +- release-notes | 17 +++++++++++++++++ setup.py | 2 +- 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/electrumpersonalserver/server/common.py b/electrumpersonalserver/server/common.py index 00a6125..6dd9b0d 100644 --- a/electrumpersonalserver/server/common.py +++ b/electrumpersonalserver/server/common.py @@ -24,7 +24,7 @@ import electrumpersonalserver.server.transactionmonitor as transactionmonitor import electrumpersonalserver.server.peertopeer as peertopeer -SERVER_VERSION_NUMBER = "0.1.7" +SERVER_VERSION_NUMBER = "0.2.0" DONATION_ADDR = "bc1q5d8l0w33h65e2l5x7ty6wgnvkvlqcz0wfaslpz" diff --git a/release-notes b/release-notes index 0478671..66b757d 100644 --- a/release-notes +++ b/release-notes @@ -1,3 +1,20 @@ +# Release v0.2.0 (5th December 2019) + +New release, thanks to code contributions by suvayu, andrewtoth and Sosthene00 +And thanks to everyone else who contributed via discussion and donations + +* Implemented tor broadcasting of transactions, which happens by default if tor + is running on the same machine. +* Also check that the last address of each master public key has been imported, + along with the first three. +* Add bandwidth usage per day and blockchain size to the server banner +* Support using `vsize` instead of `size` for the mempool calculation, which is + the correct behaviour for Bitcoin Core 0.19 +* Allow rescan date to also be passed via CLI args. Wait for any rescanning to + finish on startup. This allows Electrum Personal Server to be more easily + used with scripting. +* Various other bugfixes + # Release v0.1.7 (26th April 2019) New release, thanks to code contributions by suvayu and andrewtoth diff --git a/setup.py b/setup.py index 5175b16..6ec68c8 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name="electrum-personal-server", - version="0.1.7.dev0", + version="0.2.0.dev0", description="Electrum Personal Server", author="Chris Belcher", license="MIT",