Skip to content

Commit 72c4713

Browse files
committed
Cut 0.15.13
1 parent a8286c6 commit 72c4713

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

.buildkite/publish.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ swift build -c release --arch arm64 --arch x86_64
99
BUILDDIR=.build/artifacts/release
1010
mkdir -p $BUILDDIR
1111

12+
cp Resources/libswift_Concurrency.dylib $BUILDDIR/libswift_Concurrency.dylib
1213
cp .build/apple/Products/Release/hostmgr $BUILDDIR/hostmgr
1314
tar -czf hostmgr.tar.gz -C $BUILDDIR .
1415
mv hostmgr.tar.gz .build/artifacts/hostmgr.tar.gz

Package.resolved

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ let package = Package(
1212
// Dependencies declare other packages that this package depends on.
1313
.package(url: "https://github.com/apple/swift-argument-parser", from: "1.1.4"),
1414
.package(url: "https://github.com/soto-project/soto.git", from: "6.0.0"),
15-
.package(url: "https://github.com/jkmassel/prlctl.git", from: "1.21.0"),
15+
.package(url: "https://github.com/jkmassel/prlctl.git", from: "1.22.0"),
1616
.package(url: "https://github.com/apple/swift-log.git", from: "1.0.0"),
1717
.package(url: "https://github.com/jkmassel/kcpassword-swift.git", from: "1.0.0"),
1818
.package(url: "https://github.com/swiftpackages/DotEnv.git", from: "3.0.0"),

Sources/hostmgr/HostMgrCommand.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import libhostmgr
55
@main
66
struct Hostmgr: AsyncParsableCommand {
77

8-
private static var appVersion = "0.15.11"
8+
private static var appVersion = "0.15.13"
99

1010
static var configuration = CommandConfiguration(
1111
abstract: "A utility for managing VM hosts",

Sources/libhostmgr/libhostmgr.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,8 @@ public func startVM(name: String) async throws {
216216
.isolateVM(.on),
217217
.sharedCamera(.off)
218218
], to: parallelsVM)
219-
try parallelsVM.start()
219+
220+
try parallelsVM.start(wait: false)
220221

221222
let _: Void = try await withCheckedThrowingContinuation { continuation in
222223
do {

0 commit comments

Comments
 (0)