commit bbe4c69032bc89e43f4f6dc32e0e090beeb6188e
parent ced0cc03811c8489ace30ff1ed0d46f73ba4a3ba
Author: chris-belcher <chris-belcher@users.noreply.github.com>
Date: Thu, 5 Dec 2019 09:42:49 +0000
Update release-notes and version numbers for 0.2.0
Diffstat:
3 files changed, 19 insertions(+), 2 deletions(-)
diff --git a/electrumpersonalserver/server/common.py b/electrumpersonalserver/server/common.py
@@ -24,7 +24,7 @@ import electrumpersonalserver.server.deterministicwallet as deterministicwallet
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
@@ -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
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup(
name="electrum-personal-server",
- version="0.1.7.dev0",
+ version="0.2.0.dev0",
description="Electrum Personal Server",
author="Chris Belcher",
license="MIT",