Skip to content

Commit 85b6dc1

Browse files
committed
bump version
1 parent bc7ad37 commit 85b6dc1

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
@@ -39,7 +39,7 @@ SocketIOClient* socket = [[SocketIOClient alloc] initWithSocketURL:url config:@{
3939
[socket on:@"currentAmount" callback:^(NSArray* data, SocketAckEmitter* ack) {
4040
double cur = [[data objectAtIndex:0] floatValue];
4141

42-
[socket emitWithAck:@"canUpdate" with:@[@(cur)]](0, ^(NSArray* data) {
42+
[[socket emitWithAck:@"testAckEmit" with:@[@YES]] timingOutAfter:0 callback:^(NSArray* data) {
4343
[socket emit:@"update" withItems:@[@{@"amount": @(cur + 2.50)}]];
4444
}];
4545

@@ -95,7 +95,7 @@ Carthage
9595
-----------------
9696
Add this line to your `Cartfile`:
9797
```
98-
github "socketio/socket.io-client-swift" ~> 8.0.3 # Or latest version
98+
github "socketio/socket.io-client-swift" ~> 8.1.0 # 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.0.3' # Or latest version
111+
pod 'Socket.IO-Client-Swift', '~> 8.1.0' # 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.0.3", :files => "Source/*.swift" # Or latest version
140+
github "socketio/socket.io-client-swift", "v8.1.0", :files => "Source/*.swift" # Or latest version
141141
```
142142

143143
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.3"
4+
s.version = "8.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.
@@ -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.3' }
17+
s.source = { :git => "https://github.com/socketio/socket.io-client-swift.git", :tag => 'v8.1.0' }
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)