Skip to content

Commit 64b56c5

Browse files
committed
Bump starscream and remove cocoaseeds from readme
1 parent ef84747 commit 64b56c5

File tree

2 files changed

+6
-16
lines changed

2 files changed

+6
-16
lines changed

README.md

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@ Then import `import SocketIO`.
9191
### Carthage
9292
Add these line to your `Cartfile`:
9393
```
94-
github "nuclearace/Starscream" ~> 8.0.4
95-
github "socketio/socket.io-client-swift" ~> 11.1.1 # Or latest version
94+
github "nuclearace/Starscream" ~> 8.0.5
95+
github "socketio/socket.io-client-swift" ~> 11.1.2 # Or latest version
9696
```
9797

9898
Run `carthage update --platform ios,macosx`.
@@ -104,7 +104,7 @@ Create `Podfile` and add `pod 'Socket.IO-Client-Swift'`:
104104
use_frameworks!
105105

106106
target 'YourApp' do
107-
pod 'Socket.IO-Client-Swift', '~> 11.1.1' # Or latest version
107+
pod 'Socket.IO-Client-Swift', '~> 11.1.2' # Or latest version
108108
end
109109
```
110110

@@ -127,16 +127,6 @@ Objective-C:
127127
@import SocketIO;
128128
```
129129

130-
### CocoaSeeds
131-
132-
Add this line to your `Seedfile`:
133-
134-
```
135-
github "socketio/socket.io-client-swift", "v11.1.1", :files => "Source/*.swift" # Or latest version
136-
```
137-
138-
Run `seed install`.
139-
140130

141131
# [Docs](https://nuclearace.github.io/Socket.IO-Client-Swift/index.html)
142132

Socket.IO-Client-Swift.podspec

Lines changed: 3 additions & 3 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 = "SocketIO"
4-
s.version = "11.1.1"
4+
s.version = "11.1.2"
55
s.summary = "Socket.IO-client for iOS and OS X"
66
s.description = <<-DESC
77
Socket.IO-client for iOS and OS X.
@@ -17,12 +17,12 @@ Pod::Spec.new do |s|
1717
s.requires_arc = true
1818
s.source = {
1919
:git => "https://github.com/socketio/socket.io-client-swift.git",
20-
:tag => 'v11.1.1',
20+
:tag => 'v11.1.2',
2121
:submodules => true
2222
}
2323
s.pod_target_xcconfig = {
2424
'SWIFT_VERSION' => '3.1'
2525
}
2626
s.source_files = "Source/SocketIO/**/*.swift", "Source/SocketIO/*.swift"
27-
s.dependency "StarscreamSocketIO", "~> 8.0.4"
27+
s.dependency "StarscreamSocketIO", "~> 8.0.5"
2828
end

0 commit comments

Comments
 (0)