diff --git a/CHANGELOG.md b/CHANGELOG.md index abca6152..a8a7338b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,20 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [3.0.0-beta.16] - 2025-09-18 - -## [3.0.0-beta.15] - 2025-09-18 - -## [3.0.0-beta.14] - 2025-09-17 +## [3.0.1] - 2025-09-19 - ASB: require Monero wallet to be fully synchronized before providing quotes - ORCHESTRATOR: Allow re-generating `docker-compose.yml` while preserving the asb config (`config.toml`). If you've ran the `orchestrator` before you can download a newer version, run it and an updated `docker-compose.yml` will be generated (overwriting the previous file). All data and configuration options will be preserved as they are stored inside the Docker volumes and the `config.toml` file. - GUI + CLI: Fix an issue where it'd take a long time to redeem the Monero. We did not properly skip the block scanning. - GUI + CLI: Assume Monero double spend safety after 22 instead of after 12 blocks given the recent large re-org attacks - ORCHESTRATOR: Change exposed mainnet port from `9839` to `9939` - -## [3.0.0-beta.11] - 2025-08-20 - - ORCHESTRATOR: We incorrectly passed the `--mainnet` flag to the `asb` binary but it is the default for the asb. - CONTROLLER: Add a `bitcoin-seed` command to the controller. You can use it to export the descriptor of the internal Bitcoin wallet. - CLI + GUI + ASB: Accept self-signed TLS certificates and TLS certificates with older protocol versions. @@ -657,7 +650,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.0.0-beta.16...HEAD +[unreleased]: https://github.com/eigenwallet/core/compare/3.0.1...HEAD +[3.0.1]: https://github.com/eigenwallet/core/compare/3.0.0-beta.16...3.0.1 [3.0.0-beta.16]: https://github.com/eigenwallet/core/compare/3.0.0-beta.15...3.0.0-beta.16 [3.0.0-beta.15]: https://github.com/eigenwallet/core/compare/3.0.0-beta.14...3.0.0-beta.15 [3.0.0-beta.14]: https://github.com/eigenwallet/core/compare/3.0.0-beta.13...3.0.0-beta.14 diff --git a/Cargo.lock b/Cargo.lock index 31679b98..4b89c015 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -13406,7 +13406,7 @@ dependencies = [ [[package]] name = "swap" -version = "3.0.0-beta.16" +version = "3.0.1" dependencies = [ "anyhow", "arti-client", @@ -16575,7 +16575,7 @@ dependencies = [ [[package]] name = "unstoppableswap-gui-rs" -version = "3.0.0-beta.16" +version = "3.0.1" dependencies = [ "anyhow", "dfx-swiss-sdk", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index d1cbf1c2..51912076 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "unstoppableswap-gui-rs" -version = "3.0.0-beta.16" +version = "3.0.1" authors = ["binarybaron", "einliterflasche", "unstoppableswap"] edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 80d68fe3..0cd6e940 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,6 +1,6 @@ { "productName": "eigenwallet", - "version": "3.0.0-beta.16", + "version": "3.0.1", "identifier": "net.unstoppableswap.gui", "build": { "devUrl": "http://localhost:1420", diff --git a/swap/Cargo.toml b/swap/Cargo.toml index 472533d0..c54942be 100644 --- a/swap/Cargo.toml +++ b/swap/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "swap" -version = "3.0.0-beta.16" +version = "3.0.1" authors = ["The COMIT guys "] edition = "2021" description = "XMR/BTC trustless atomic swaps."