From 4c1e9375581b2deef44eee14526dbad33c6b5482 Mon Sep 17 00:00:00 2001 From: Sergio Lopez Date: Wed, 24 Jun 2026 17:28:19 +0200 Subject: [PATCH 1/3] timesync: rustfmt fixes Signed-off-by: Sergio Lopez --- src/timesync.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/timesync.rs b/src/timesync.rs index b2cf6b6..faa75aa 100644 --- a/src/timesync.rs +++ b/src/timesync.rs @@ -8,7 +8,7 @@ use std::time::SystemTime; use std::time::UNIX_EPOCH; use core_foundation::runloop::{ - kCFRunLoopCommonModes, CFRunLoopAddSource, CFRunLoopGetCurrent, CFRunLoopRun, __CFRunLoopSource, + __CFRunLoopSource, kCFRunLoopCommonModes, CFRunLoopAddSource, CFRunLoopGetCurrent, CFRunLoopRun, }; use objc2_io_kit::{ io_object_t, io_service_t, kIOMessageSystemHasPoweredOn, kIOMessageSystemWillPowerOn, From 79ac038554ef5064bb3bbd034b97813b6294df75 Mon Sep 17 00:00:00 2001 From: Sergio Lopez Date: Wed, 24 Jun 2026 17:28:51 +0200 Subject: [PATCH 2/3] ci: switch to new tap and trust it Signed-off-by: Sergio Lopez --- .github/workflows/unit_tests-aarch64-darwin.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/unit_tests-aarch64-darwin.yaml b/.github/workflows/unit_tests-aarch64-darwin.yaml index 4f37359..c2b3fed 100644 --- a/.github/workflows/unit_tests-aarch64-darwin.yaml +++ b/.github/workflows/unit_tests-aarch64-darwin.yaml @@ -21,7 +21,7 @@ jobs: uses: Homebrew/actions/setup-homebrew@master - name: Install dependencies - run: brew tap slp/krun && brew install virglrenderer clang-format libkrun + run: brew tap libkrun/krun && brew trust libkrun/krun && brew install virglrenderer clang-format libkrun - name: Build run: cargo build --release --verbose From 66109608cf29528613e74aaec4679cd5624587ce Mon Sep 17 00:00:00 2001 From: Sergio Lopez Date: Wed, 24 Jun 2026 17:22:59 +0200 Subject: [PATCH 3/3] Bump patch version to 1.2.2 Bump patch version to generate a new release with libkrun-1.19.1 for podman. Signed-off-by: Sergio Lopez --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 244914e..8fd0b90 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "krunkit" -version = "1.2.1" +version = "1.2.2" authors = ["The krunkit Authors"] edition = "2021" description = "CLI tool to start VMs with libkrun"