File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ import PackageDescription
7474let package = Package(
7575 name: "YourSocketIOProject",
7676 dependencies: [
77- .Package(url: "https://github.com/socketio/socket.io-client-swift", majorVersion: 4 )
77+ .Package(url: "https://github.com/socketio/socket.io-client-swift", majorVersion: 5 )
7878 ]
7979)
8080```
@@ -85,7 +85,7 @@ Carthage
8585-----------------
8686Add this line to your ` Cartfile ` :
8787```
88- github "socketio/socket.io-client-swift" ~> 4.1.6 # Or latest version
88+ github "socketio/socket.io-client-swift" ~> 5.0.0 # Or latest version
8989```
9090
9191Run ` carthage update --platform ios,macosx ` .
@@ -99,7 +99,7 @@ source 'https://github.com/CocoaPods/Specs.git'
9999platform :ios , ' 8.0'
100100use_frameworks!
101101
102- pod ' Socket.IO-Client-Swift' , ' ~> 4.1.6 ' # Or latest version
102+ pod ' Socket.IO-Client-Swift' , ' ~> 5.0.0 ' # Or latest version
103103```
104104
105105Install pods:
@@ -127,7 +127,7 @@ CocoaSeeds
127127Add this line to your ` Seedfile ` :
128128
129129```
130- github "socketio/socket.io-client-swift", "v4.1.6 ", :files => "SocketIOClientSwift/*.swift" # Or latest version
130+ github "socketio/socket.io-client-swift", "v5.0.0 ", :files => "SocketIOClientSwift/*.swift" # Or latest version
131131```
132132
133133Run ` seed install ` .
Original file line number Diff line number Diff line change 11Pod ::Spec . new do |s |
22 s . name = "Socket.IO-Client-Swift"
3- s . version = "4.1.6 "
3+ s . version = "5.0.0 "
44 s . summary = "Socket.IO-client for iOS and OS X"
55 s . description = <<-DESC
66 Socket.IO-client for iOS and OS X.
@@ -13,7 +13,7 @@ Pod::Spec.new do |s|
1313 s . ios . deployment_target = '8.0'
1414 s . osx . deployment_target = '10.10'
1515 s . tvos . deployment_target = '9.0'
16- s . source = { :git => "https://github.com/socketio/socket.io-client-swift.git" , :tag => 'v4.1.6 ' }
16+ s . source = { :git => "https://github.com/socketio/socket.io-client-swift.git" , :tag => 'v5.0.0 ' }
1717 s . source_files = "Source/**/*.swift"
1818 s . requires_arc = true
1919 # s.dependency 'Starscream', '~> 0.9' # currently this repo includes Starscream swift files
You can’t perform that action at this time.
0 commit comments