Skip to content

Commit a53b716

Browse files
committed
update version and readme
1 parent 6c6b4f3 commit a53b716

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,9 @@ SocketIOClient* socket = [[SocketIOClient alloc] initWithSocketURL:url options:@
5555
- Can be used from Objective-C
5656
5757
##Installation
58-
Requires Swift 2/Xcode 7
58+
Requires Swift 2.2/Xcode 7.3
59+
60+
If you need Swift 2.1/Xcode 7.2 use v5.5.0 (Pre-Swift 2.2 support is no longer maintained)
5961
6062
If you need Swift 1.2/Xcode 6.3/4 use v2.4.5 (Pre-Swift 2 support is no longer maintained)
6163
@@ -86,7 +88,7 @@ Carthage
8688
-----------------
8789
Add this line to your `Cartfile`:
8890
```
89-
github "socketio/socket.io-client-swift" ~> 5.5.0 # Or latest version
91+
github "socketio/socket.io-client-swift" ~> 6.0.0 # Or latest version
9092
```
9193

9294
Run `carthage update --platform ios,macosx`.
@@ -100,7 +102,7 @@ source 'https://github.com/CocoaPods/Specs.git'
100102
platform :ios, '8.0'
101103
use_frameworks!
102104

103-
pod 'Socket.IO-Client-Swift', '~> 5.5.0' # Or latest version
105+
pod 'Socket.IO-Client-Swift', '~> 6.0.0' # Or latest version
104106
```
105107

106108
Install pods:
@@ -128,7 +130,7 @@ CocoaSeeds
128130
Add this line to your `Seedfile`:
129131

130132
```
131-
github "socketio/socket.io-client-swift", "v5.5.0", :files => "Source/*.swift" # Or latest version
133+
github "socketio/socket.io-client-swift", "v6.0.0", :files => "Source/*.swift" # Or latest version
132134
```
133135

134136
Run `seed install`.

Socket.IO-Client-Swift.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22
s.name = "Socket.IO-Client-Swift"
33
s.module_name = "SocketIOClientSwift"
4-
s.version = "5.5.0"
4+
s.version = "6.0.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.
@@ -14,7 +14,7 @@ Pod::Spec.new do |s|
1414
s.ios.deployment_target = '8.0'
1515
s.osx.deployment_target = '10.10'
1616
s.tvos.deployment_target = '9.0'
17-
s.source = { :git => "https://github.com/socketio/socket.io-client-swift.git", :tag => 'v5.5.0' }
17+
s.source = { :git => "https://github.com/socketio/socket.io-client-swift.git", :tag => 'v6.0.0' }
1818
s.source_files = "Source/**/*.swift"
1919
s.requires_arc = true
2020
# s.dependency 'Starscream', '~> 0.9' # currently this repo includes Starscream swift files

0 commit comments

Comments
 (0)