update changelog/readme for 15.1

This commit is contained in:
Erik Little 2019-05-28 08:55:11 -04:00
parent c1744e9e6f
commit 0d44b10734
No known key found for this signature in database
GPG Key ID: 62F837E56F4E9320
2 changed files with 4 additions and 3 deletions

View File

@ -1,5 +1,6 @@
# v15.0.1
# v15.1.0
- Add ability to enable websockets SOCKS proxy.
- Fix emit completion callback not firing on websockets [#1178](https://github.com/socketio/socket.io-client-swift/issues/1178)
# v15.0.0

View File

@ -99,7 +99,7 @@ Then import `import SocketIO`.
### Carthage
Add this line to your `Cartfile`:
```
github "socketio/socket.io-client-swift" ~> 15.0.0
github "socketio/socket.io-client-swift" ~> 15.1.0
```
Run `carthage update --platform ios,macosx`.
@ -113,7 +113,7 @@ Create `Podfile` and add `pod 'Socket.IO-Client-Swift'`:
use_frameworks!
target 'YourApp' do
pod 'Socket.IO-Client-Swift', '~> 15.0.0'
pod 'Socket.IO-Client-Swift', '~> 15.1.0'
end
```