This commit is contained in:
Erik Little 2018-01-07 12:20:17 -05:00
parent 9224e2b3e6
commit 658d5f5b71
No known key found for this signature in database
GPG Key ID: B8E1F067FE8DCAAF
3 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
# 13.1.1
- Fix [#923](https://github.com/socketio/socket.io-client-swift/issues/923)
# v13.1.0
- Allow setting `SocketEngineSpec.extraHeaders` after init.

View File

@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = "Socket.IO-Client-Swift"
s.module_name = "SocketIO"
s.version = "13.1.0"
s.version = "13.1.1"
s.summary = "Socket.IO-client for iOS and OS X"
s.description = <<-DESC
Socket.IO-client for iOS and OS X.
@ -18,7 +18,7 @@ Pod::Spec.new do |s|
s.requires_arc = true
s.source = {
:git => "https://github.com/socketio/socket.io-client-swift.git",
:tag => 'v13.1.0',
:tag => 'v13.1.1',
:submodules => true
}
s.pod_target_xcconfig = {

View File

@ -205,7 +205,7 @@ open class SocketManager : NSObject, SocketManagerSpec, SocketParsable, SocketDa
return
}
engine?.send("0\(socket.nsp)", withData: [])
engine?.send("0\(socket.nsp),", withData: [])
}
/// Called when the manager has disconnected from socket.io.