-
Notifications
You must be signed in to change notification settings - Fork 844
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* development: Update and gen docs prepare podspec for release Regenerate docs update docs, remove other prints remove print Support both v2 and v3 Start working on migration guide update docs Add ability to send payload with connect more CocoaPods testing CocoaPods testing Fix tests Better timeouts Support socket.io 3 + starscream 4 update examples for new operator Add some helpful operators fix swift syntax highlighting show how to test for ack timeouts
- Loading branch information
Showing
81 changed files
with
5,431 additions
and
2,251 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
github "daltoniam/Starscream" ~> 3.1 | ||
github "daltoniam/Starscream" ~> 4.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
github "daltoniam/Starscream" "3.1.0" | ||
github "daltoniam/Starscream" "4.0.4" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "Socket.IO-Client-Swift" | ||
s.module_name = "SocketIO" | ||
s.version = "15.2.0" | ||
s.version = "16.0.0" | ||
s.summary = "Socket.IO-client for iOS and OS X" | ||
s.description = <<-DESC | ||
Socket.IO-client for iOS and OS X. | ||
Supports ws/wss/polling connections and binary. | ||
For socket.io 2.0+ and Swift. | ||
For socket.io 3.0+ and Swift. | ||
DESC | ||
s.homepage = "https://github.com/socketio/socket.io-client-swift" | ||
s.license = { :type => 'MIT' } | ||
s.author = { "Erik" => "[email protected]" } | ||
s.ios.deployment_target = '8.0' | ||
s.osx.deployment_target = '10.10' | ||
s.tvos.deployment_target = '9.0' | ||
s.watchos.deployment_target = '2.0' | ||
s.ios.deployment_target = '10.0' | ||
s.osx.deployment_target = '10.13' | ||
s.tvos.deployment_target = '10.0' | ||
s.watchos.deployment_target = '5.0' | ||
s.requires_arc = true | ||
s.source = { | ||
:git => "https://github.com/socketio/socket.io-client-swift.git", | ||
:tag => 'v15.2.0', | ||
:tag => 'v16.0.0', | ||
:submodules => true | ||
} | ||
|
||
|
@@ -27,5 +27,5 @@ Pod::Spec.new do |s| | |
'SWIFT_VERSION' => '5.0' | ||
} | ||
s.source_files = "Source/SocketIO/**/*.swift", "Source/SocketIO/*.swift" | ||
s.dependency "Starscream", "~> 3.1" | ||
s.dependency "Starscream", "~> 4.0" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.