Skip to content

Commit f3590af

Browse files
authored
manifest: use a stable release for swift-log
There is the 1.4.3 release of swift-log that contains the required changes. Update the manifest to try to use a stable release instead of main.
1 parent e69e0cb commit f3590af

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

Package.swift

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,8 @@ let SwiftWin32 = Package(
1111
.executable(name: "Calculator", targets: ["Calculator"]),
1212
],
1313
dependencies: [
14-
// NOTE(compnerd) require main as no current release has support for the
15-
// new CRT module.
16-
.package(url: "https://github.com/apple/swift-log.git", branch: "main"),
14+
.package(url: "https://github.com/apple/swift-log.git",
15+
.upToNextMajor(from: "1.4.3")),
1716
.package(url: "https://github.com/apple/swift-collections.git",
1817
.upToNextMinor(from: "1.0.0")),
1918
.package(url: "https://github.com/compnerd/cassowary.git", branch: "main"),

[email protected]

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,8 @@ let SwiftWin32 = Package(
1111
.executable(name: "Calculator", targets: ["Calculator"]),
1212
],
1313
dependencies: [
14-
// NOTE(compnerd) require main as no current release has support for the
15-
// new CRT module.
16-
.package(url: "https://github.com/apple/swift-log.git", .branch("main")),
14+
.package(url: "https://github.com/apple/swift-log.git",
15+
.upToNextMajor(from: "1.4.3")),
1716
.package(url: "https://github.com/apple/swift-collections.git",
1817
.upToNextMinor(from: "1.0.0")),
1918
.package(url: "https://github.com/compnerd/cassowary.git", .branch("main")),

0 commit comments

Comments
 (0)