Skip to content

Commit 01790af

Browse files
committed
bump version for xcode 8.3
1 parent 551ad7f commit 01790af

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

Diff for: .swift-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.0
1+
3.1

Diff for: .travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: objective-c
22
xcode_project: Socket.IO-Client-Swift.xcodeproj # path to your xcodeproj folder
33
xcode_scheme: SocketIO-iOS
4-
osx_image: xcode8
4+
osx_image: xcode8.3
55
branches:
66
only:
77
- master

Diff for: README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Carthage
9595
-----------------
9696
Add this line to your `Cartfile`:
9797
```
98-
github "socketio/socket.io-client-swift" ~> 8.3.0 # Or latest version
98+
github "socketio/socket.io-client-swift" ~> 8.3.1 # Or latest version
9999
```
100100

101101
Run `carthage update --platform ios,macosx`.
@@ -108,7 +108,7 @@ Create `Podfile` and add `pod 'Socket.IO-Client-Swift'`:
108108
use_frameworks!
109109

110110
target 'YourApp' do
111-
pod 'Socket.IO-Client-Swift', '~> 8.3.0' # Or latest version
111+
pod 'Socket.IO-Client-Swift', '~> 8.3.1' # Or latest version
112112
end
113113
```
114114

@@ -137,7 +137,7 @@ CocoaSeeds
137137
Add this line to your `Seedfile`:
138138

139139
```
140-
github "socketio/socket.io-client-swift", "v8.3.0", :files => "Source/*.swift" # Or latest version
140+
github "socketio/socket.io-client-swift", "v8.3.1", :files => "Source/*.swift" # Or latest version
141141
```
142142

143143
Run `seed install`.

Diff for: Socket.IO-Client-Swift.podspec

+3-3
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 = "SocketIO"
4-
s.version = "8.3.0"
4+
s.version = "8.3.1"
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,9 +14,9 @@ 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 => 'v8.3.0' }
17+
s.source = { :git => "https://github.com/socketio/socket.io-client-swift.git", :tag => 'v8.3.1' }
1818
s.source_files = "Source/**/*.swift"
1919
s.requires_arc = true
20-
s.pod_target_xcconfig = {'SWIFT_VERSION' => '3.0'}
20+
s.pod_target_xcconfig = {'SWIFT_VERSION' => '3.1'}
2121
# s.dependency 'Starscream', '~> 0.9' # currently this repo includes Starscream swift files
2222
end

0 commit comments

Comments
 (0)