Skip to content

Commit

Permalink
Release 1.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
marcprux committed Oct 1, 2024
1 parent b3ab0f3 commit 31a6b17
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ let package = Package(
.target(name: "SkipTest", dependencies: [.target(name: "SkipDrive", condition: .when(platforms: [.macOS]))]),
.testTarget(name: "SkipTestTests", dependencies: ["SkipTest"]),
.testTarget(name: "SkipDriveTests", dependencies: ["SkipDrive"]),
.binaryTarget(name: "skip", url: "https://source.skip.tools/skip/releases/download/1.1.6/skip.zip", checksum: "a84134208db1377323585aaed24f754f30cb3c3af59f44675e6cdbfaa94fe28e")
.binaryTarget(name: "skip", url: "https://source.skip.tools/skip/releases/download/1.1.7/skip.zip", checksum: "b2f99f7632fe2b3f2b4844c9a0bb299638bf08041ce02578c8276f9eaa65217f")
]
)

Expand Down
2 changes: 1 addition & 1 deletion Plugins/SkipPlugin/SkipPlugin.swift
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ import PackagePlugin
if target.sourceFiles.contains(where: { $0.path.extension == "swift" }) {
let skipBridgeOutputPath = Path(outputURL.appendingPathComponent(peerTarget.name + "SwiftBridge.swift", isDirectory: false).path)
//Diagnostics.warning("add skip extensions output for \(target.name): \(skipBridgeOutputPath)", file: skipBridgeOutputPath.string)
buildArguments += [ "--skipbridge", skipBridgeOutputPath.string ]
buildArguments += [ "--skipbridge", skipBridgeOutputPath.string ]
outputFiles += [skipBridgeOutputPath]
}

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ let package = Package(
.library(name: "ModuleName", targets: ["ModuleName"]),
],
dependencies: [
.package(url: "https://source.skip.tools/skip.git", from: "1.1.6"),
.package(url: "https://source.skip.tools/skip.git", from: "1.1.7"),
.package(url: "https://source.skip.tools/skip-foundation.git", from: "0.0.0"),
],
targets: [
Expand Down
2 changes: 1 addition & 1 deletion Sources/SkipDrive/Version.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Skip

/// The current version of SkipDrive.
public let skipVersion = "1.1.6"
public let skipVersion = "1.1.7"

0 comments on commit 31a6b17

Please sign in to comment.