Skip to content

Commit 82c4b60

Browse files
authored
fix(ci): Use ubuntu-22.04 to build GUI, enable preview builds, revert 1.0.0-rc.3 (#185)
* fix(ci): Use ubuntu-22.04 to build GUI * Revert "Prepare release 1.0.0-rc.3 (#184)" This reverts commit 6bf90eb.
1 parent 6bf90eb commit 82c4b60

File tree

5 files changed

+9
-11
lines changed

5 files changed

+9
-11
lines changed

.github/workflows/build-gui-release-binaries.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ jobs:
99
publish-tauri:
1010
# Do not publish preview releases to Github.
1111
# Building takes too long for preview releases.
12-
if: ${{ !contains(github.ref_name, 'preview') }}
12+
# TODO: This has been temporarily enabled
13+
# if: ${{ !contains(github.ref_name, 'preview') }}
1314
permissions:
1415
contents: write
1516
strategy:
@@ -20,7 +21,7 @@ jobs:
2021
args: "--target aarch64-apple-darwin"
2122
- platform: "macos-13" # for Intel based macs.
2223
args: "--target x86_64-apple-darwin"
23-
- platform: "ubuntu-22.04"
24+
- platform: "ubuntu-24.04"
2425
args: ""
2526
- platform: "windows-latest"
2627
args: ""
@@ -43,7 +44,7 @@ jobs:
4344
targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }}
4445

4546
- name: install dependencies (ubuntu only)
46-
if: matrix.platform == 'ubuntu-22.04' # This must match the platform value defined above.
47+
if: matrix.platform == 'ubuntu-24.04' # This must match the platform value defined above.
4748
run: |
4849
sudo apt update;
4950
sudo apt install -y \

CHANGELOG.md

+1-4
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10-
## [1.0.0-rc.3] - 2024-11-17
11-
1210
- ASB: We now log verbose messages to hourly rotating `tracing*.log` which are kept for 24 hours. General logs are written to `swap-all.log`.
1311

1412
## [1.0.0-rc.2] - 2024-11-16
@@ -399,8 +397,7 @@ It is possible to migrate critical data from the old db to the sqlite but there
399397
- 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.
400398
Fixing this required a **breaking change** on the network layer and hence old versions are not compatible with this version.
401399

402-
[unreleased]: https://github.com/UnstoppableSwap/core/compare/1.0.0-rc.3...HEAD
403-
[1.0.0-rc.3]: https://github.com/UnstoppableSwap/core/compare/1.0.0-rc.2...1.0.0-rc.3
400+
[unreleased]: https://github.com/UnstoppableSwap/core/compare/1.0.0-rc.2...HEAD
404401
[1.0.0-rc.2]: https://github.com/UnstoppableSwap/core/compare/1.0.0-rc.1...1.0.0-rc.2
405402
[1.0.0-rc.1]: https://github.com/UnstoppableSwap/core/compare/1.0.0-alpha.3...1.0.0-rc.1
406403
[1.0.0-alpha.3]: https://github.com/UnstoppableSwap/core/compare/1.0.0-alpha.2...1.0.0-alpha.3

Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/tauri.conf.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"productName": "UnstoppableSwap",
3-
"version": "1.0.0-rc.3",
3+
"version": "1.0.0-rc.2",
44
"identifier": "net.unstoppableswap.gui",
55
"build": {
66
"devUrl": "http://localhost:1420",

swap/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "swap"
3-
version = "1.0.0-rc.3"
3+
version = "1.0.0-rc.2"
44
authors = [ "The COMIT guys <[email protected]>" ]
55
edition = "2021"
66
description = "XMR/BTC trustless atomic swaps."

0 commit comments

Comments
 (0)