Skip to content

Commit 8a6cfa0

Browse files
authored
Update Swift version (#446)
1 parent 1f17a65 commit 8a6cfa0

File tree

3 files changed

+17
-21
lines changed

3 files changed

+17
-21
lines changed

.swift-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.7.0
1+
5.10

Package.swift

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,26 @@
1-
// swift-tools-version:5.7.0
1+
// swift-tools-version:5.10
22
// The swift-tools-version declares the minimum version of Swift required to build this package.
33

44
import PackageDescription
55

66
let package = Package(
77
name: "SwiftQueue",
88
platforms: [
9-
.macOS(.v10_14),
10-
.iOS(.v12),
9+
.macOS(.v11),
10+
.iOS(.v13),
1111
.macCatalyst(.v13),
12-
.tvOS(.v12),
13-
.watchOS(.v5)
12+
.tvOS(.v13),
13+
.watchOS(.v6)
1414
],
1515
products: [
16-
// Products define the executables and libraries produced by a package, and make them visible to other packages.
1716
.library(
1817
name: "SwiftQueue",
1918
targets: ["SwiftQueue"])
2019
],
2120
dependencies: [
22-
// Dependencies declare other packages that this package depends on.
21+
// Add external dependencies here if needed
2322
],
2423
targets: [
25-
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
26-
// Targets can depend on other targets in this package, and on products in packages which this package depends on.
2724
.target(
2825
name: "SwiftQueue",
2926
dependencies: []),
@@ -32,4 +29,4 @@ let package = Package(
3229
dependencies: ["SwiftQueue"])
3330
],
3431
swiftLanguageVersions: [.v5]
35-
)
32+
)

SwiftQueue.podspec

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,18 @@ Pod::Spec.new do |s|
22
s.name = "SwiftQueue"
33
s.version = "6.0.2"
44
s.summary = "SwiftQueue"
5-
s.description = "Job Scheduler for IOS with Concurrent run, failure/retry, persistence, repeat, delay and more"
5+
s.description = "Job Scheduler for iOS with concurrent execution, retry/failure handling, persistence, and more."
66
s.homepage = "https://github.com/lucas34/SwiftQueue"
7-
s.license = 'MIT'
7+
s.license = { :type => 'MIT', :file => 'LICENSE' }
88
s.author = { "Lucas Nelaupe" => "[email protected]" }
99
s.source = { :git => "https://github.com/lucas34/SwiftQueue.git", :tag => s.version.to_s }
1010

11-
s.swift_version = '5.7.0'
11+
s.swift_version = '5.10'
1212

13-
s.ios.deployment_target = "12.0"
14-
s.tvos.deployment_target= "12.0"
15-
s.watchos.deployment_target = "5.0"
16-
s.osx.deployment_target= "10.14"
13+
s.ios.deployment_target = "13.0"
14+
s.tvos.deployment_target = "13.0"
15+
s.watchos.deployment_target = "6.0"
16+
s.osx.deployment_target = "10.15"
1717

18-
s.source_files = 'Sources/SwiftQueue/**.swift'
19-
20-
end
18+
s.source_files = 'Sources/SwiftQueue/**/*.swift'
19+
end

0 commit comments

Comments
 (0)