From 0d44b10734dcd30a013960f1e968508fa85c7a40 Mon Sep 17 00:00:00 2001 From: Erik Little Date: Tue, 28 May 2019 08:55:11 -0400 Subject: [PATCH] update changelog/readme for 15.1 --- CHANGELOG.md | 3 ++- README.md | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cd4777d..4f57fc0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index 3cbb312..dd1004c 100644 --- a/README.md +++ b/README.md @@ -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 ```