From d628dbffb8b72a265dd26ee03cc3f18e2fe53cad Mon Sep 17 00:00:00 2001 From: moozzyk <moozzyk@gmail.com> Date: Fri, 17 Feb 2023 14:30:11 -0800 Subject: [PATCH] Bump version to 0.9.2 Bump target versions to fix `pod lint` warnings Disable watchos as it still doesn't as the fix has not been released --- SwiftSignalRClient.podspec | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/SwiftSignalRClient.podspec b/SwiftSignalRClient.podspec index 0255e6a..d98a1fc 100644 --- a/SwiftSignalRClient.podspec +++ b/SwiftSignalRClient.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "SwiftSignalRClient" - s.version = "0.9.1" + s.version = "0.9.2" s.summary = "Swift SignalR Client for the ASP.Net Core version of SignalR." s.homepage = "https://github.com/moozzyk/SignalR-Client-Swift" s.license = { :type => "Attribution License", :file => "LICENSE" } @@ -8,10 +8,11 @@ Pod::Spec.new do |s| s.authors = { "Pawel Kadluczka" => "moozzyk@gmail.com" } s.social_media_url = "https://twitter.com/moozzyk" s.swift_version = "5.0" - s.ios.deployment_target = "9.0" + s.ios.deployment_target = "11.0" s.osx.deployment_target = "10.13" - s.tvos.deployment_target = "9.0" - s.watchos.deployment_target = "6.0" + s.tvos.deployment_target = "11.0" + # Issue once https://github.com/CocoaPods/CocoaPods/issues/11558 was fixed but not released + # s.watchos.deployment_target = "6.0" s.source_files = "Sources/SignalRClient/*.swift" s.requires_arc = true end