diff --git a/CHANGELOG.md b/CHANGELOG.md index 256fddcc1..07d1a014b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [4.11.5] - 2026-07-07 + - ASB: The Hermes protocol is now enabled by default (`hermes_enabled` defaults to `true`), and the default `hermes_min_swap_amount` was lowered from `0.01` to `0.001` BTC (~50 USD at a reference price of 50,000 USD/BTC). ## [4.11.4] - 2026-06-30 @@ -1042,7 +1044,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/4.11.4...HEAD +[unreleased]: https://github.com/eigenwallet/core/compare/4.11.5...HEAD +[4.11.5]: https://github.com/eigenwallet/core/compare/4.11.4...4.11.5 [4.11.4]: https://github.com/eigenwallet/core/compare/4.11.3...4.11.4 [4.11.3]: https://github.com/eigenwallet/core/compare/4.11.2...4.11.3 [4.11.2]: https://github.com/eigenwallet/core/compare/4.11.0...4.11.2 diff --git a/Cargo.lock b/Cargo.lock index 16e53cf64..546195784 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -10587,7 +10587,7 @@ checksum = "734676eb262c623cec13c3155096e08d1f8f29adce39ba17948b18dad1e54142" [[package]] name = "swap" -version = "4.11.4" +version = "4.11.5" dependencies = [ "anyhow", "arti-client", @@ -10680,7 +10680,7 @@ dependencies = [ [[package]] name = "swap-asb" -version = "4.11.4" +version = "4.11.5" dependencies = [ "anyhow", "bitcoin 0.32.8", @@ -10711,7 +10711,7 @@ dependencies = [ [[package]] name = "swap-controller" -version = "4.11.4" +version = "4.11.5" dependencies = [ "anyhow", "bitcoin 0.32.8", @@ -13513,7 +13513,7 @@ dependencies = [ [[package]] name = "unstoppableswap-gui-rs" -version = "4.11.4" +version = "4.11.5" dependencies = [ "rustls 0.23.37", "serde", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 8233dd2d2..0b92aeaed 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "unstoppableswap-gui-rs" -version = "4.11.4" +version = "4.11.5" authors = ["binarybaron", "einliterflasche", "unstoppableswap"] edition = "2024" 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 cf43253db..3c96ddbe9 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,6 +1,6 @@ { "productName": "eigenwallet", - "version": "4.11.4", + "version": "4.11.5", "identifier": "net.unstoppableswap.gui", "build": { "devUrl": "http://localhost:1420", diff --git a/swap-asb/Cargo.toml b/swap-asb/Cargo.toml index adaf2686d..e47e61c5b 100644 --- a/swap-asb/Cargo.toml +++ b/swap-asb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "swap-asb" -version = "4.11.4" +version = "4.11.5" authors = ["The eigenwallet guys ", "The COMIT guys "] edition = "2024" description = "ASB (Automated Swap Backend) binary for XMR/BTC atomic swaps." diff --git a/swap-controller/Cargo.toml b/swap-controller/Cargo.toml index 6f81dd3eb..610b779b4 100644 --- a/swap-controller/Cargo.toml +++ b/swap-controller/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "swap-controller" -version = "4.11.4" +version = "4.11.5" edition = "2024" [[bin]] diff --git a/swap/Cargo.toml b/swap/Cargo.toml index a926b666f..fa1d8e804 100644 --- a/swap/Cargo.toml +++ b/swap/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "swap" -version = "4.11.4" +version = "4.11.5" authors = ["The COMIT guys "] edition = "2024" description = "XMR/BTC trustless atomic swaps."