From cd2997f2f6b823d73397d39ef0b59a7e482a613c Mon Sep 17 00:00:00 2001 From: RockerHX Date: Mon, 6 May 2019 17:03:44 +0800 Subject: [PATCH 1/2] Update to Swift 5.0. --- Repeat.podspec | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Repeat.podspec b/Repeat.podspec index fdf6d0d..9702fe0 100644 --- a/Repeat.podspec +++ b/Repeat.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "Repeat" - s.version = "0.5.7" + s.version = "0.6.0" s.summary = "Modern NSTimer alternative in Swift" s.description = <<-DESC Repeat is a modern alternative to NSTimer; no strong references, multiple observers, reusable instances with start/stop/pause support in swifty syntax. @@ -9,12 +9,12 @@ Pod::Spec.new do |s| s.license = { :type => "MIT", :file => "LICENSE" } s.author = { "Daniele Margutti" => "me@danielemargutti.com" } s.social_media_url = "http://twitter.com/danielemargutti" - s.ios.deployment_target = "8.0" - s.osx.deployment_target = "10.10" - s.watchos.deployment_target = "2.0" - s.tvos.deployment_target = "9.0" + s.ios.deployment_target = "12.2" + s.osx.deployment_target = "10.14.4" + s.tvos.deployment_target = "12.2" + s.watchos.deployment_target = "5.2" s.source = { :git => "https://github.com/malcommac/Repeat.git", :tag => s.version.to_s } s.source_files = "Sources/**/*" s.frameworks = "Foundation" - s.swift_version = '4.0' + s.swift_version = '5.0' end From 43a971d4e45967bbc001e33a5f98611b21723fb5 Mon Sep 17 00:00:00 2001 From: Daniele Margutti Date: Mon, 16 Sep 2019 08:05:26 +0200 Subject: [PATCH 2/2] #40 Added SPM toolkit 5.0 --- Package.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Package.swift b/Package.swift index 7e3f26e..ece6331 100644 --- a/Package.swift +++ b/Package.swift @@ -1,4 +1,4 @@ -// swift-tools-version:4.0 +// swift-tools-version:5.0 // The swift-tools-version declares the minimum version of Swift required to build this package. import PackageDescription