Skip to content

Commit 0849a75

Browse files
committed
bump version
1 parent b33e73f commit 0849a75

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Diff for: README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -88,13 +88,13 @@ let package = Package(
8888
)
8989
```
9090

91-
Then import `import SocketIOClientSwift`.
91+
Then import `import SocketIO`.
9292

9393
Carthage
9494
-----------------
9595
Add this line to your `Cartfile`:
9696
```
97-
github "socketio/socket.io-client-swift" ~> 8.0.0 # Or latest version
97+
github "socketio/socket.io-client-swift" ~> 8.0.1 # Or latest version
9898
```
9999

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

109109
target 'YourApp' do
110-
pod 'Socket.IO-Client-Swift', '~> 8.0.0' # Or latest version
110+
pod 'Socket.IO-Client-Swift', '~> 8.0.1' # Or latest version
111111
end
112112
```
113113

@@ -136,7 +136,7 @@ CocoaSeeds
136136
Add this line to your `Seedfile`:
137137

138138
```
139-
github "socketio/socket.io-client-swift", "v8.0.0", :files => "Source/*.swift" # Or latest version
139+
github "socketio/socket.io-client-swift", "v8.0.1", :files => "Source/*.swift" # Or latest version
140140
```
141141

142142
Run `seed install`.

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

+2-2
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.0.0"
4+
s.version = "8.0.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,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 => 'v8.0.0' }
17+
s.source = { :git => "https://github.com/socketio/socket.io-client-swift.git", :tag => 'v8.0.1' }
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)