Skip to content

Commit 15198fd

Browse files
committed
update versions; use upstream starscream in podfile dep
1 parent 3ee3f4f commit 15198fd

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.gitmodules

Whitespace-only changes.

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,7 @@ Then import `import SocketIO`.
8787
### Carthage
8888
Add these line to your `Cartfile`:
8989
```
90-
github "nuclearace/Starscream" ~> 8.0.7
91-
github "socketio/socket.io-client-swift" ~> 12.0.0 # Or latest version
90+
github "socketio/socket.io-client-swift" ~> 12.1.0 # Or latest version
9291
```
9392

9493
Run `carthage update --platform ios,macosx`.
@@ -100,7 +99,7 @@ Create `Podfile` and add `pod 'Socket.IO-Client-Swift'`:
10099
use_frameworks!
101100

102101
target 'YourApp' do
103-
pod 'Socket.IO-Client-Swift', '~> 12.0.0' # Or latest version
102+
pod 'Socket.IO-Client-Swift', '~> 12.1.0' # Or latest version
104103
end
105104
```
106105

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 = "12.0.0"
4+
s.version = "12.1.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.
@@ -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 => 'v12.0.0',
20+
:tag => 'v12.1.0',
2121
:submodules => true
2222
}
2323
s.pod_target_xcconfig = {
2424
'SWIFT_VERSION' => '4.0'
2525
}
2626
s.source_files = "Source/SocketIO/**/*.swift", "Source/SocketIO/*.swift"
27-
s.dependency "StarscreamSocketIO", "~> 9.0.2"
27+
s.dependency "Starscream", "~> 2.1.1"
2828
end

0 commit comments

Comments
 (0)