Skip to content

Commit 1648a51

Browse files
committed
bump version
1 parent ad7043c commit 1648a51

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -60,20 +60,20 @@ If you need Swift 1.2/Xcode 6.3/4 use v2.4.5 (Pre-Swift 2 support is no longer m
6060
6161
If you need Swift 1.1/Xcode 6.2 use v1.5.2. (Pre-Swift 1.2 support is no longer maintained)
6262
63+
Manually (iOS 7+)
64+
-----------------
65+
1. Copy the SocketIOClientSwift folder into your Xcode project. (Make sure you add the files to your target(s))
66+
2. If you plan on using this from Objective-C, read [this](https://developer.apple.com/library/ios/documentation/Swift/Conceptual/BuildingCocoaApps/MixandMatch.html) on exposing Swift code to Objective-C.
67+
6368
Carthage
6469
-----------------
6570
Add this line to your `Cartfile`:
6671
```
67-
github "socketio/socket.io-client-swift" ~> 3.1.5 # Or latest version
72+
github "socketio/socket.io-client-swift" ~> 3.1.6 # Or latest version
6873
```
6974
7075
Run `carthage update --platform ios,macosx`.
7176
72-
Manually (iOS 7+)
73-
-----------------
74-
1. Copy the SocketIOClientSwift folder into your Xcode project. (Make sure you add the files to your target(s))
75-
2. If you plan on using this from Objective-C, read [this](https://developer.apple.com/library/ios/documentation/Swift/Conceptual/BuildingCocoaApps/MixandMatch.html) on exposing Swift code to Objective-C.
76-
7777
CocoaPods 0.36.0 or later (iOS 8+)
7878
------------------
7979
Create `Podfile` and add `pod 'Socket.IO-Client-Swift'`:
@@ -83,7 +83,7 @@ source 'https://github.com/CocoaPods/Specs.git'
8383
platform :ios, '8.0'
8484
use_frameworks!
8585
86-
pod 'Socket.IO-Client-Swift', '~> 3.1.5' # Or latest version
86+
pod 'Socket.IO-Client-Swift', '~> 3.1.6' # Or latest version
8787
```
8888

8989
Install pods:
@@ -111,7 +111,7 @@ CocoaSeeds
111111
Add this line to your `Seedfile`:
112112

113113
```
114-
github "socketio/socket.io-client-swift", "v3.1.4", :files => "SocketIOClientSwift/*.swift" # Or latest version
114+
github "socketio/socket.io-client-swift", "v3.1.6", :files => "SocketIOClientSwift/*.swift" # Or latest version
115115
```
116116

117117
Run `seed install`.

Socket.IO-Client-Swift.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "Socket.IO-Client-Swift"
3-
s.version = "3.1.5"
3+
s.version = "3.1.6"
44
s.summary = "Socket.IO-client for iOS and OS X"
55
s.description = <<-DESC
66
Socket.IO-client for iOS and OS X.
@@ -12,7 +12,7 @@ Pod::Spec.new do |s|
1212
s.author = { "Erik" => "nuclear.ace@gmail.com" }
1313
s.ios.deployment_target = '8.0'
1414
s.osx.deployment_target = '10.10'
15-
s.source = { :git => "https://github.com/socketio/socket.io-client-swift.git", :tag => 'v3.1.5' }
15+
s.source = { :git => "https://github.com/socketio/socket.io-client-swift.git", :tag => 'v3.1.6' }
1616
s.source_files = "SocketIOClientSwift/**/*.swift"
1717
s.requires_arc = true
1818
# s.dependency 'Starscream', '~> 0.9' # currently this repo includes Starscream swift files

0 commit comments

Comments
 (0)