From 4a11c4de283b947f68c5b87c6f2cf117e27e3fc8 Mon Sep 17 00:00:00 2001 From: Gecko Botty Date: Sun, 9 Nov 2025 13:15:58 +0100 Subject: [PATCH] Prepare release 3.2.11 (#691) Co-authored-by: UnstoppableSwap Botty --- CHANGELOG.md | 9 ++++++--- Cargo.lock | 8 ++++---- src-tauri/Cargo.toml | 2 +- src-tauri/tauri.conf.json | 2 +- swap-asb/Cargo.toml | 2 +- swap-controller/Cargo.toml | 2 +- swap/Cargo.toml | 2 +- 7 files changed, 15 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 64c88183..3739e723 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,15 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [3.2.11] - 2025-11-09 + - GUI + SWAP: Assume double spend safety of Monero transactions after 6 confirmations. This means we are assuming that there won't be any re-orgs deeper than 5 blocks. We believe this is a safe assumption given that there were almost no orphaned blocks over the last two weeks. Qubic (which was behind the re-orgs) has mined less than 1% of the last 1000 blocks. - GUI: Remove the following default Electrum servers: `tcp://electrum.blockstream.info:50001`, `tcp://electrum.coinucopia.io:50001`, `tcp://se-mma-crypto-payments-001.mullvad.net:50001`, `tcp://electrum2.bluewallet.io:50777` due to them being unreliable. Add the following new default Electrum servers: `tcp://electrum1.bluewallet.io:50001`, `tcp://electrum2.bluewallet.io:50001`, `tcp://electrum3.bluewallet.io:50001`, `ssl://btc-electrum.cakewallet.com:50002`, `tcp://bitcoin.aranguren.org:50001`. - ## [3.2.10] - 2025-11-08 - GUI + SWAP + ASB: Reduce the confirmations required to spend a Monero transaction from 22 to 15. We believe the risks of re-orgs is low again and this is safe to do. This may increase the chances of swap being successful and will reduce the time a swap takes. - GUI: Fix an issue where we a manual resume of a swap would be necessary if we failed to fetch certain Bitcoin transactions due to network issues. -- +- + ## [3.2.9] - 2025-11-05 - GUI: Fix an issue where an error in the UI runtime would cause a white screen to be displayed and nothing would be rendered. @@ -741,7 +743,8 @@ It is possible to migrate critical data from the old db to the sqlite but there - Fixed an issue where Alice would not verify if Bob's Bitcoin lock transaction is semantically correct, i.e. pays the agreed upon amount to an output owned by both of them. Fixing this required a **breaking change** on the network layer and hence old versions are not compatible with this version. -[unreleased]: https://github.com/eigenwallet/core/compare/3.2.10...HEAD +[unreleased]: https://github.com/eigenwallet/core/compare/3.2.11...HEAD +[3.2.11]: https://github.com/eigenwallet/core/compare/3.2.10...3.2.11 [3.2.10]: https://github.com/eigenwallet/core/compare/3.2.9...3.2.10 [3.2.9]: https://github.com/eigenwallet/core/compare/3.2.8...3.2.9 [3.2.8]: https://github.com/eigenwallet/core/compare/3.2.7...3.2.8 diff --git a/Cargo.lock b/Cargo.lock index 13c31e7a..0a09342d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -11067,7 +11067,7 @@ checksum = "734676eb262c623cec13c3155096e08d1f8f29adce39ba17948b18dad1e54142" [[package]] name = "swap" -version = "3.2.10" +version = "3.2.11" dependencies = [ "anyhow", "arti-client", @@ -11170,7 +11170,7 @@ dependencies = [ [[package]] name = "swap-asb" -version = "3.2.10" +version = "3.2.11" dependencies = [ "anyhow", "bitcoin 0.32.7", @@ -11199,7 +11199,7 @@ dependencies = [ [[package]] name = "swap-controller" -version = "3.2.10" +version = "3.2.11" dependencies = [ "anyhow", "clap 4.5.50", @@ -13987,7 +13987,7 @@ dependencies = [ [[package]] name = "unstoppableswap-gui-rs" -version = "3.2.10" +version = "3.2.11" dependencies = [ "anyhow", "dfx-swiss-sdk", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 8c9c6d9a..3ed282c2 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "unstoppableswap-gui-rs" -version = "3.2.10" +version = "3.2.11" authors = ["binarybaron", "einliterflasche", "unstoppableswap"] edition = "2021" description = "GUI for XMR<>BTC Atomic Swaps written in Rust" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index c2111e7a..61e5c616 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,6 +1,6 @@ { "productName": "eigenwallet", - "version": "3.2.10", + "version": "3.2.11", "identifier": "net.unstoppableswap.gui", "build": { "devUrl": "http://localhost:1420", diff --git a/swap-asb/Cargo.toml b/swap-asb/Cargo.toml index 70a9789a..38817a51 100644 --- a/swap-asb/Cargo.toml +++ b/swap-asb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "swap-asb" -version = "3.2.10" +version = "3.2.11" authors = ["The eigenwallet guys ", "The COMIT guys "] edition = "2021" description = "ASB (Automated Swap Backend) binary for XMR/BTC atomic swaps." diff --git a/swap-controller/Cargo.toml b/swap-controller/Cargo.toml index 1abce514..70bd0e4b 100644 --- a/swap-controller/Cargo.toml +++ b/swap-controller/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "swap-controller" -version = "3.2.10" +version = "3.2.11" edition = "2021" [[bin]] diff --git a/swap/Cargo.toml b/swap/Cargo.toml index 0949b097..8452e7c8 100644 --- a/swap/Cargo.toml +++ b/swap/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "swap" -version = "3.2.10" +version = "3.2.11" authors = ["The COMIT guys "] edition = "2021" description = "XMR/BTC trustless atomic swaps."