From 1f810fab6b00edd138177b9b4efbf3e2831a3696 Mon Sep 17 00:00:00 2001 From: tecnovert Date: Fri, 9 Feb 2024 11:36:50 +0200 Subject: [PATCH] Raise version to 0.12.7 --- basicswap/__init__.py | 2 +- doc/release-notes.md | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+), 1 deletion(-) diff --git a/basicswap/__init__.py b/basicswap/__init__.py index f951052..e10d01d 100644 --- a/basicswap/__init__.py +++ b/basicswap/__init__.py @@ -1,3 +1,3 @@ name = "basicswap" -__version__ = "0.12.6" +__version__ = "0.12.7" diff --git a/doc/release-notes.md b/doc/release-notes.md index 4075951..78bcbe3 100644 --- a/doc/release-notes.md +++ b/doc/release-notes.md @@ -1,3 +1,31 @@ +0.12.7 +============== + +- basicswap-prepare + - Sets --usetorproxy automatically when tor is enabled on existing installs for commands that access the network. + - Disable with --notorproxy + - Switch the LTC download URL to github (works over Tor) + - Sets `wshost` to match `htmlhost` by default +- doc: Simplify docker tor install notes. +- Basicswap will set monero-wallet-rpc proxy when Tor is enabled if the host ip setting (`rpchost`) for the monerod instance is not a private ip. + - Works for automatically selected daemons too. + - Override with a `use_tor` parameter in the Monero section of basicswap.json. +- Basicswap sets monero-wallet-rpc `--trusted-daemon` if the host ip setting for the monerod instance is a private ip. + - Override with the `trusted_daemon` parameter in the Monero section of basicswap.json. + - Defaults to auto. + - Override in basicswap-prepare with `--trustremotenode` +- Add settings in basicswap.json to set Monero rpc timeouts + - `rpctimeout`, `walletrpctimeout` and `walletrpctimeoutlong` in the Monero section of basicswap.json. + - `wallet_update_timeout` in basicswap.json to set how long the wallet ui page waits for an rpc response. + + +0.12.6 +============== + +- ui: Display count of locked UTXOs on wallet page. + - Only shows if locked UTXOs is > 0 + + 0.12.5 ==============