File tree Expand file tree Collapse file tree 2 files changed +6
-16
lines changed Expand file tree Collapse file tree 2 files changed +6
-16
lines changed Original file line number Diff line number Diff line change @@ -91,8 +91,8 @@ Then import `import SocketIO`.
91
91
### Carthage
92
92
Add these line to your ` Cartfile ` :
93
93
```
94
- github "nuclearace/Starscream" ~> 8.0.4
95
- github "socketio/socket.io-client-swift" ~> 11.1.1 # Or latest version
94
+ github "nuclearace/Starscream" ~> 8.0.5
95
+ github "socketio/socket.io-client-swift" ~> 11.1.2 # Or latest version
96
96
```
97
97
98
98
Run ` carthage update --platform ios,macosx ` .
@@ -104,7 +104,7 @@ Create `Podfile` and add `pod 'Socket.IO-Client-Swift'`:
104
104
use_frameworks!
105
105
106
106
target ' YourApp' do
107
- pod ' Socket.IO-Client-Swift' , ' ~> 11.1.1 ' # Or latest version
107
+ pod ' Socket.IO-Client-Swift' , ' ~> 11.1.2 ' # Or latest version
108
108
end
109
109
```
110
110
@@ -127,16 +127,6 @@ Objective-C:
127
127
@import SocketIO;
128
128
```
129
129
130
- ### CocoaSeeds
131
-
132
- Add this line to your ` Seedfile ` :
133
-
134
- ```
135
- github "socketio/socket.io-client-swift", "v11.1.1", :files => "Source/*.swift" # Or latest version
136
- ```
137
-
138
- Run ` seed install ` .
139
-
140
130
141
131
# [ Docs] ( https://nuclearace.github.io/Socket.IO-Client-Swift/index.html )
142
132
Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
s . name = "Socket.IO-Client-Swift"
3
3
s . module_name = "SocketIO"
4
- s . version = "11.1.1 "
4
+ s . version = "11.1.2 "
5
5
s . summary = "Socket.IO-client for iOS and OS X"
6
6
s . description = <<-DESC
7
7
Socket.IO-client for iOS and OS X.
@@ -17,12 +17,12 @@ Pod::Spec.new do |s|
17
17
s . requires_arc = true
18
18
s . source = {
19
19
:git => "https://github.com/socketio/socket.io-client-swift.git" ,
20
- :tag => 'v11.1.1 ' ,
20
+ :tag => 'v11.1.2 ' ,
21
21
:submodules => true
22
22
}
23
23
s . pod_target_xcconfig = {
24
24
'SWIFT_VERSION' => '3.1'
25
25
}
26
26
s . source_files = "Source/SocketIO/**/*.swift" , "Source/SocketIO/*.swift"
27
- s . dependency "StarscreamSocketIO" , "~> 8.0.4 "
27
+ s . dependency "StarscreamSocketIO" , "~> 8.0.5 "
28
28
end
You can’t perform that action at this time.
0 commit comments