From 046bb0e9ff65d2cdf603f0e77f729ee4b112f9fc Mon Sep 17 00:00:00 2001 From: Erik Little Date: Thu, 17 Oct 2019 06:32:02 -0400 Subject: [PATCH] bump version --- CHANGELOG.md | 4 ++++ README.md | 4 ++-- Socket.IO-Client-Swift.podspec | 4 ++-- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f57fc0e..494754d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# v15.2.0 + +- Small fixes. + # v15.1.0 - Add ability to enable websockets SOCKS proxy. diff --git a/README.md b/README.md index dd1004ca..855ff67d 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.1.0 +github "socketio/socket.io-client-swift" ~> 15.2.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.1.0' + pod 'Socket.IO-Client-Swift', '~> 15.2.0' end ``` diff --git a/Socket.IO-Client-Swift.podspec b/Socket.IO-Client-Swift.podspec index 8abbdb51..e9c9c8c0 100644 --- a/Socket.IO-Client-Swift.podspec +++ b/Socket.IO-Client-Swift.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "Socket.IO-Client-Swift" s.module_name = "SocketIO" - s.version = "15.1.0" + s.version = "15.2.0" 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 => 'v15.1.0', + :tag => 'v15.2.0', :submodules => true }