File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed
Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1+ # v13.0.1
2+
3+ - Fix not setting handleQueue on ` SocketManager `
4+
15# v13.0.0
26
37Checkout out the migration guide in Usage Docs for a more detailed guide on how to migrate to this version.
Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ Then import `import SocketIO`.
9999### Carthage
100100Add this line to your ` Cartfile ` :
101101```
102- github "socketio/socket.io-client-swift" ~> 13.0.0 # Or latest version
102+ github "socketio/socket.io-client-swift" ~> 13.0.0
103103```
104104
105105Run ` carthage update --platform ios,macosx ` .
@@ -113,7 +113,7 @@ Create `Podfile` and add `pod 'Socket.IO-Client-Swift'`:
113113use_frameworks!
114114
115115target ' YourApp' do
116- pod ' Socket.IO-Client-Swift' , ' ~> 13.0.0' # Or latest version
116+ pod ' Socket.IO-Client-Swift' , ' ~> 13.0.0'
117117end
118118```
119119
Original file line number Diff line number Diff line change 11Pod ::Spec . new do |s |
22 s . name = "Socket.IO-Client-Swift"
33 s . module_name = "SocketIO"
4- s . version = "13.0.0 "
4+ s . version = "13.0.1 "
55 s . summary = "Socket.IO-client for iOS and OS X"
66 s . description = <<-DESC
77 Socket.IO-client for iOS and OS X.
@@ -18,7 +18,7 @@ Pod::Spec.new do |s|
1818 s . requires_arc = true
1919 s . source = {
2020 :git => "https://github.com/socketio/socket.io-client-swift.git" ,
21- :tag => 'v13.0.0 ' ,
21+ :tag => 'v13.0.1 ' ,
2222 :submodules => true
2323 }
2424 s . pod_target_xcconfig = {
You can’t perform that action at this time.
0 commit comments