Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.6.0] - 2025-12-15

- GUI (Taker): Previously takers had to receive the Monero transfer proof from the maker over the network. This required interactivity meaning that if the peer-to-peer connection was lost, the taker might not detect that the Monero were locked. This would cause unnecessary refunds of swaps that could have otherwise succeded. The taker will now scan the view-only Monero wallet in the background (while concurrently waiting for the transfer proof over the network). The taker will detect if the Monero are locked even if peer-to-peer connection to the other party is lost. This significantly improves the reliability of swaps.
- GUI: Fix an issue where it'd take a while for swaps to show up after a restart.

Expand Down Expand Up @@ -805,7 +807,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.5.2...HEAD
[unreleased]: https://github.com/eigenwallet/core/compare/3.6.0...HEAD
[3.6.0]: https://github.com/eigenwallet/core/compare/3.5.2...3.6.0
[3.5.2]: https://github.com/eigenwallet/core/compare/3.5.1...3.5.2
[3.5.1]: https://github.com/eigenwallet/core/compare/3.5.0...3.5.1
[3.5.0]: https://github.com/eigenwallet/core/compare/3.4.2...3.5.0
Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "unstoppableswap-gui-rs"
version = "3.5.2"
version = "3.6.0"
authors = ["binarybaron", "einliterflasche", "unstoppableswap"]
edition = "2021"
description = "GUI for XMR<>BTC Atomic Swaps written in Rust"
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"productName": "eigenwallet",
"version": "3.5.2",
"version": "3.6.0",
"identifier": "net.unstoppableswap.gui",
"build": {
"devUrl": "http://localhost:1420",
Expand Down
2 changes: 1 addition & 1 deletion swap-asb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "swap-asb"
version = "3.5.2"
version = "3.6.0"
authors = ["The eigenwallet guys <hello@eigenwallet.org>", "The COMIT guys <hello@comit.network>"]
edition = "2021"
description = "ASB (Automated Swap Backend) binary for XMR/BTC atomic swaps."
Expand Down
2 changes: 1 addition & 1 deletion swap-controller/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "swap-controller"
version = "3.5.2"
version = "3.6.0"
edition = "2021"

[[bin]]
Expand Down
2 changes: 1 addition & 1 deletion swap/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "swap"
version = "3.5.2"
version = "3.6.0"
authors = ["The COMIT guys <hello@comit.network>"]
edition = "2021"
description = "XMR/BTC trustless atomic swaps."
Expand Down
Loading