From 77702de1805f4e17fb54c17a12419f71782bcb41 Mon Sep 17 00:00:00 2001 From: Rafael Nobre Date: Mon, 23 Sep 2019 14:54:36 -0300 Subject: [PATCH] Adds support for Swift 5 in podspec. --- SwiftWebSocket.podspec | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/SwiftWebSocket.podspec b/SwiftWebSocket.podspec index 5159b1c..fd991b8 100644 --- a/SwiftWebSocket.podspec +++ b/SwiftWebSocket.podspec @@ -1,12 +1,13 @@ Pod::Spec.new do |s| s.name = "SwiftWebSocket" - s.version = "2.7.0" + s.version = "2.8.1" s.summary = "A high performance WebSocket client library for Swift." s.homepage = "https://github.com/tidwall/SwiftWebSocket" s.license = { :type => "Attribution License", :file => "LICENSE" } - s.source = { :git => "https://github.com/tidwall/SwiftWebSocket.git", :tag => "v2.7.0" } + s.source = { :git => "https://github.com/tidwall/SwiftWebSocket.git", :tag => "v#{s.version}" } s.authors = { 'Josh Baker' => 'joshbaker77@gmail.com' } s.social_media_url = "https://twitter.com/tidwall" + s.swift_versions = ['5.0'] s.ios.deployment_target = "8.0" s.osx.deployment_target = "10.9" s.tvos.deployment_target = "9.0"