Merge pull request #39 from mxcl/less-manifests-test

You can specify future Swifts in a 4.2 manifest!
This commit is contained in:
repo-ranger[bot]
2019-02-14 01:00:02 +00:00
committed by GitHub
2 changed files with 1 additions and 15 deletions

View File

@@ -10,5 +10,5 @@ let pkg = Package(
.target(name: "Path", path: "Sources"),
.testTarget(name: "PathTests", dependencies: ["Path"]),
],
swiftLanguageVersions: [.v4, .v4_2]
swiftLanguageVersions: [.v4, .v4_2, .version("5")]
)

View File

@@ -1,14 +0,0 @@
// swift-tools-version:5.0
import PackageDescription
let pkg = Package(
name: "Path.swift",
products: [
.library(name: "Path", targets: ["Path"]),
],
targets: [
.target(name: "Path", path: "Sources"),
.testTarget(name: "PathTests", dependencies: ["Path"]),
],
swiftLanguageVersions: [.v4, .v4_2, .v5]
)