Skip to content

Commit f44c3d7

Browse files
committed
fix: Ensure Swift 5.9-6.0 compatibility
1 parent 67a9735 commit f44c3d7

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Package.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ let package = Package(
1010
.macOS(.v10_15),
1111
.tvOS(.v13),
1212
.macCatalyst(.v13),
13-
.watchOS(.v6)
13+
.watchOS(.v6),
1414
],
1515
products: [
1616
.library(
@@ -27,8 +27,8 @@ let package = Package(
2727
dependencies: [
2828
.package(
2929
url: "https://github.com/capturecontext/swift-interception.git",
30-
.upToNextMinor(from: "0.4.0")
31-
)
30+
.upToNextMinor(from: "0.4.4")
31+
),
3232
],
3333
targets: [
3434
.target(

Package@swift-5.9.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ let package = Package(
1010
.macOS(.v10_15),
1111
.tvOS(.v13),
1212
.macCatalyst(.v13),
13-
.watchOS(.v6)
13+
.watchOS(.v6),
1414
],
1515
products: [
1616
.library(
@@ -27,8 +27,8 @@ let package = Package(
2727
dependencies: [
2828
.package(
2929
url: "https://github.com/capturecontext/swift-interception.git",
30-
.upToNextMinor(from: "0.4.0")
31-
)
30+
.upToNextMinor(from: "0.4.4")
31+
),
3232
],
3333
targets: [
3434
.target(

0 commit comments

Comments
 (0)