File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 2
2
3
3
- Allow setting ` SocketEngineSpec.extraHeaders ` after init.
4
4
- Deprecate ` SocketEngineSpec.websocket ` in favor of just using the ` SocketEngineSpec.polling ` property.
5
+ - Enable bitcode for most platforms.
5
6
6
7
# v13.0.1
7
8
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ let package = Package(
86
86
.executable(name: "socket.io-test", targets: ["YourTargetName"])
87
87
],
88
88
dependencies: [
89
- .package(url: "https://github.com/socketio/socket.io-client-swift", .upToNextMinor(from: "13.0 .0"))
89
+ .package(url: "https://github.com/socketio/socket.io-client-swift", .upToNextMinor(from: "13.1 .0"))
90
90
],
91
91
targets: [
92
92
.target(name: "YourTargetName", dependencies: ["SocketIO"], path: "./Path/To/Your/Sources")
@@ -99,7 +99,7 @@ Then import `import SocketIO`.
99
99
### Carthage
100
100
Add this line to your ` Cartfile ` :
101
101
```
102
- github "socketio/socket.io-client-swift" ~> 13.0 .0
102
+ github "socketio/socket.io-client-swift" ~> 13.1 .0
103
103
```
104
104
105
105
Run ` carthage update --platform ios,macosx ` .
@@ -113,7 +113,7 @@ Create `Podfile` and add `pod 'Socket.IO-Client-Swift'`:
113
113
use_frameworks!
114
114
115
115
target ' YourApp' do
116
- pod ' Socket.IO-Client-Swift' , ' ~> 13.0 .0'
116
+ pod ' Socket.IO-Client-Swift' , ' ~> 13.1 .0'
117
117
end
118
118
```
119
119
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 = "13.0.1 "
4
+ s . version = "13.1.0 "
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.
@@ -18,7 +18,7 @@ Pod::Spec.new do |s|
18
18
s . requires_arc = true
19
19
s . source = {
20
20
:git => "https://github.com/socketio/socket.io-client-swift.git" ,
21
- :tag => 'v13.0.1 ' ,
21
+ :tag => 'v13.1.0 ' ,
22
22
:submodules => true
23
23
}
24
24
s . pod_target_xcconfig = {
You can’t perform that action at this time.
0 commit comments