From 4f83c466f05683c655a671e66a81494365c52cb4 Mon Sep 17 00:00:00 2001 From: Erik Little Date: Fri, 18 Aug 2017 18:57:56 -0400 Subject: [PATCH 1/4] Update starscream version in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7aa24d2..65a4e0b 100644 --- a/README.md +++ b/README.md @@ -91,7 +91,7 @@ Then import `import SocketIO`. ### Carthage Add these line to your `Cartfile`: ``` -github "nuclearace/Starscream" ~> 8.0.2 +github "nuclearace/Starscream" ~> 8.0.3 github "socketio/socket.io-client-swift" ~> 11.1.0 # Or latest version ``` From a1399d8c5c1200f638c830f4144ca752e0d1833f Mon Sep 17 00:00:00 2001 From: Erik Little Date: Tue, 22 Aug 2017 11:03:00 -0400 Subject: [PATCH 2/4] Fix SPM and bump version --- README.md | 8 ++++---- Socket.IO-Client-Swift.podspec | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 65a4e0b..e3ccdc1 100644 --- a/README.md +++ b/README.md @@ -91,8 +91,8 @@ Then import `import SocketIO`. ### Carthage Add these line to your `Cartfile`: ``` -github "nuclearace/Starscream" ~> 8.0.3 -github "socketio/socket.io-client-swift" ~> 11.1.0 # Or latest version +github "nuclearace/Starscream" ~> 8.0.4 +github "socketio/socket.io-client-swift" ~> 11.1.2 # Or latest version ``` Run `carthage update --platform ios,macosx`. @@ -104,7 +104,7 @@ Create `Podfile` and add `pod 'Socket.IO-Client-Swift'`: use_frameworks! target 'YourApp' do - pod 'Socket.IO-Client-Swift', '~> 11.1.0' # Or latest version + pod 'Socket.IO-Client-Swift', '~> 11.1.2' # Or latest version end ``` @@ -132,7 +132,7 @@ Objective-C: Add this line to your `Seedfile`: ``` -github "socketio/socket.io-client-swift", "v11.1.0", :files => "Source/*.swift" # Or latest version +github "socketio/socket.io-client-swift", "v11.1.2", :files => "Source/*.swift" # Or latest version ``` Run `seed install`. diff --git a/Socket.IO-Client-Swift.podspec b/Socket.IO-Client-Swift.podspec index bc03cb9..dbab885 100644 --- a/Socket.IO-Client-Swift.podspec +++ b/Socket.IO-Client-Swift.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "Socket.IO-Client-Swift" s.module_name = "SocketIO" - s.version = "11.1.0" + s.version = "11.1.2" s.summary = "Socket.IO-client for iOS and OS X" s.description = <<-DESC Socket.IO-client for iOS and OS X. @@ -17,12 +17,12 @@ Pod::Spec.new do |s| s.requires_arc = true s.source = { :git => "https://github.com/socketio/socket.io-client-swift.git", - :tag => 'v11.1.0', + :tag => 'v11.1.2', :submodules => true } s.pod_target_xcconfig = { 'SWIFT_VERSION' => '3.1' } - s.source_files = "Source/*.swift" - s.dependency "StarscreamSocketIO", "~> 8.0.3" + s.source_files = "Source/SocketIO/**/*.swift", "Source/SocketIO/*.swift" + s.dependency "StarscreamSocketIO", "~> 8.0.4" end From 86155d571405ae9d6f41620a6457e451aa37d7e3 Mon Sep 17 00:00:00 2001 From: Erik Little Date: Tue, 22 Aug 2017 11:03:57 -0400 Subject: [PATCH 3/4] correct version is 11.1.1 --- README.md | 6 +++--- Socket.IO-Client-Swift.podspec | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index e3ccdc1..89df491 100644 --- a/README.md +++ b/README.md @@ -92,7 +92,7 @@ Then import `import SocketIO`. Add these line to your `Cartfile`: ``` github "nuclearace/Starscream" ~> 8.0.4 -github "socketio/socket.io-client-swift" ~> 11.1.2 # Or latest version +github "socketio/socket.io-client-swift" ~> 11.1.1 # Or latest version ``` Run `carthage update --platform ios,macosx`. @@ -104,7 +104,7 @@ Create `Podfile` and add `pod 'Socket.IO-Client-Swift'`: use_frameworks! target 'YourApp' do - pod 'Socket.IO-Client-Swift', '~> 11.1.2' # Or latest version + pod 'Socket.IO-Client-Swift', '~> 11.1.1' # Or latest version end ``` @@ -132,7 +132,7 @@ Objective-C: Add this line to your `Seedfile`: ``` -github "socketio/socket.io-client-swift", "v11.1.2", :files => "Source/*.swift" # Or latest version +github "socketio/socket.io-client-swift", "v11.1.1", :files => "Source/*.swift" # Or latest version ``` Run `seed install`. diff --git a/Socket.IO-Client-Swift.podspec b/Socket.IO-Client-Swift.podspec index dbab885..924b1d3 100644 --- a/Socket.IO-Client-Swift.podspec +++ b/Socket.IO-Client-Swift.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "Socket.IO-Client-Swift" s.module_name = "SocketIO" - s.version = "11.1.2" + s.version = "11.1.1" s.summary = "Socket.IO-client for iOS and OS X" s.description = <<-DESC Socket.IO-client for iOS and OS X. @@ -17,7 +17,7 @@ Pod::Spec.new do |s| s.requires_arc = true s.source = { :git => "https://github.com/socketio/socket.io-client-swift.git", - :tag => 'v11.1.2', + :tag => 'v11.1.1', :submodules => true } s.pod_target_xcconfig = { From 3c507d135f34cbeddb5ed35e4083412d62d52109 Mon Sep 17 00:00:00 2001 From: Erik Little Date: Tue, 22 Aug 2017 11:15:41 -0400 Subject: [PATCH 4/4] Fix source files location --- Socket.IO-Client-Swift.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Socket.IO-Client-Swift.podspec b/Socket.IO-Client-Swift.podspec index 924b1d3..9c5c307 100644 --- a/Socket.IO-Client-Swift.podspec +++ b/Socket.IO-Client-Swift.podspec @@ -23,6 +23,6 @@ Pod::Spec.new do |s| s.pod_target_xcconfig = { 'SWIFT_VERSION' => '3.1' } - s.source_files = "Source/SocketIO/**/*.swift", "Source/SocketIO/*.swift" + s.source_files = "Source/*.swift" s.dependency "StarscreamSocketIO", "~> 8.0.4" end