diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f9f2174..fee61053 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] +## [3.0.2] - 2025-09-21 + - Fix an issue where the released binaries for Windows where incorrect labeled as having been built for Linux ## [3.0.1] - 2025-09-19 @@ -652,7 +654,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.1...HEAD +[unreleased]: https://github.com/eigenwallet/core/compare/3.0.2...HEAD +[3.0.2]: https://github.com/eigenwallet/core/compare/3.0.1...3.0.2 [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 diff --git a/Cargo.lock b/Cargo.lock index 4b89c015..ce53e369 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -13406,7 +13406,7 @@ dependencies = [ [[package]] name = "swap" -version = "3.0.1" +version = "3.0.2" dependencies = [ "anyhow", "arti-client", @@ -16575,7 +16575,7 @@ dependencies = [ [[package]] name = "unstoppableswap-gui-rs" -version = "3.0.1" +version = "3.0.2" dependencies = [ "anyhow", "dfx-swiss-sdk", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 51912076..74d33ac8 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "unstoppableswap-gui-rs" -version = "3.0.1" +version = "3.0.2" 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 0cd6e940..75709307 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,6 +1,6 @@ { "productName": "eigenwallet", - "version": "3.0.1", + "version": "3.0.2", "identifier": "net.unstoppableswap.gui", "build": { "devUrl": "http://localhost:1420", diff --git a/swap/Cargo.toml b/swap/Cargo.toml index c54942be..0bc72189 100644 --- a/swap/Cargo.toml +++ b/swap/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "swap" -version = "3.0.1" +version = "3.0.2" authors = ["The COMIT guys "] edition = "2021" description = "XMR/BTC trustless atomic swaps."