Skip to content

Commit

Permalink
Merge pull request #4 from JZDesign/hotfix.support.macos.v12
Browse files Browse the repository at this point in the history
  • Loading branch information
the-freshlord committed May 19, 2022
2 parents fb80eb7 + c340556 commit c5b6b2b
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version:5.1
// swift-tools-version:5.6
// The swift-tools-version declares the minimum version of Swift required to build this package.

/**
Expand All @@ -11,19 +11,22 @@ import PackageDescription

let package = Package(
name: "CNAMEPublishPlugin",
platforms: [.macOS(.v12)],
products: [
.library(
name: "CNAMEPublishPlugin",
targets: ["CNAMEPublishPlugin"]
)
],
dependencies: [
.package(url: "https://github.com/johnsundell/publish.git", from: "0.7.0")
.package(url: "https://github.com/johnsundell/publish.git", .upToNextMajor(from: "0.7.0"))
],
targets: [
.target(
name: "CNAMEPublishPlugin",
dependencies: ["Publish"]
dependencies: [
.product(name: "Publish", package: "publish")
]
),
.testTarget(
name: "CNAMEPublishPluginTests",
Expand Down

0 comments on commit c5b6b2b

Please sign in to comment.