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 22
33- Allow setting ` SocketEngineSpec.extraHeaders ` after init.
44- Deprecate ` SocketEngineSpec.websocket ` in favor of just using the ` SocketEngineSpec.polling ` property.
5+ - Enable bitcode for most platforms.
56
67# v13.0.1
78
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ let package = Package(
8686 .executable(name: "socket.io-test", targets: ["YourTargetName"])
8787 ],
8888 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"))
9090 ],
9191 targets: [
9292 .target(name: "YourTargetName", dependencies: ["SocketIO"], path: "./Path/To/Your/Sources")
@@ -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
102+ github "socketio/socket.io-client-swift" ~> 13.1 .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'
116+ pod ' Socket.IO-Client-Swift' , ' ~> 13.1 .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.1 "
4+ s . version = "13.1.0 "
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.1 ' ,
21+ :tag => 'v13.1.0 ' ,
2222 :submodules => true
2323 }
2424 s . pod_target_xcconfig = {
You can’t perform that action at this time.
0 commit comments