Skip to content

Commit

Permalink
fix: just add 5.8-5.10, too
Browse files Browse the repository at this point in the history
  • Loading branch information
drmohundro committed Aug 23, 2024
1 parent d8837f8 commit 266a1d7
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 12 deletions.
16 changes: 10 additions & 6 deletions Package@swift-4.2.swift → Package@swift-5.10.swift
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// swift-tools-version:4.2
// swift-tools-version:5.10

//
// SWXMLHash.swift
// Package@swift-5.3.swift
// SWXMLHash
//
// Copyright (c) 2014 David Mohundro
// Copyright (c) 2024 David Mohundro
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
Expand Down Expand Up @@ -38,12 +38,16 @@ let package = Package(
targets: [
.target(
name: "SWXMLHash",
path: "Source"
path: "Source",
exclude: ["Info.plist"]
),
.testTarget(
name: "SWXMLHashTests",
dependencies: ["SWXMLHash"]
dependencies: ["SWXMLHash"],
exclude: ["Info.plist", "test.xml"]
)
],
swiftLanguageVersions: [.v3, .v4, .v4_2]
swiftLanguageVersions: [
.v5
]
)
2 changes: 1 addition & 1 deletion Package@swift-5.3.swift → Package@swift-5.8.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version:5.3
// swift-tools-version:5.8

//
// Package@swift-5.3.swift
Expand Down
14 changes: 9 additions & 5 deletions Package@swift-5.1.swift → Package@swift-5.9.swift
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
// swift-tools-version:5.1
// swift-tools-version:5.9

//
// SWXMLHash.swift
// Package@swift-5.3.swift
// SWXMLHash
//
// Copyright (c) 2014 David Mohundro
// Copyright (c) 2024 David Mohundro
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
Expand All @@ -23,6 +24,7 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
//

import PackageDescription

let package = Package(
Expand All @@ -36,11 +38,13 @@ let package = Package(
targets: [
.target(
name: "SWXMLHash",
path: "Source"
path: "Source",
exclude: ["Info.plist"]
),
.testTarget(
name: "SWXMLHashTests",
dependencies: ["SWXMLHash"]
dependencies: ["SWXMLHash"],
exclude: ["Info.plist", "test.xml"]
)
],
swiftLanguageVersions: [
Expand Down

0 comments on commit 266a1d7

Please sign in to comment.