diff --git a/Cartfile b/Cartfile
index 0b3d6ad1..abe27950 100644
--- a/Cartfile
+++ b/Cartfile
@@ -1,2 +1,2 @@
github "bitmark-inc/tweetnacl-swiftwrap" ~> 1.0
-github "pusher/NWWebSocket" ~> 0.5.3
+github "pusher/NWWebSocket" ~> 0.5.4
diff --git a/Cartfile.resolved b/Cartfile.resolved
index e232733b..a3f0a3e5 100644
--- a/Cartfile.resolved
+++ b/Cartfile.resolved
@@ -1,2 +1,2 @@
github "bitmark-inc/tweetnacl-swiftwrap" "1.1.0"
-github "pusher/NWWebSocket" "0.5.3"
+github "pusher/NWWebSocket" "0.5.4"
diff --git a/Package.swift b/Package.swift
index ae4f9564..6def1958 100644
--- a/Package.swift
+++ b/Package.swift
@@ -9,9 +9,9 @@ let package = Package(
.library(name: "PusherSwift", targets: ["PusherSwift"])
],
dependencies: [
- .package(url: "https://github.com/pusher/NWWebSocket.git", .upToNextMajor(from: "0.5.3")),
+ .package(url: "https://github.com/pusher/NWWebSocket.git", .upToNextMajor(from: "0.5.4")),
.package(url: "https://github.com/bitmark-inc/tweetnacl-swiftwrap", .upToNextMajor(from: "1.0.0")),
- ],
+ ],
targets: [
.target(
name: "PusherSwift",
diff --git a/PusherSwift.podspec b/PusherSwift.podspec
index 887e20cc..565a8d23 100644
--- a/PusherSwift.podspec
+++ b/PusherSwift.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'PusherSwift'
- s.version = '10.1.4'
+ s.version = '10.1.5'
s.summary = 'A Pusher client library in Swift'
s.homepage = 'https://github.com/pusher/pusher-websocket-swift'
s.license = 'MIT'
@@ -13,7 +13,7 @@ Pod::Spec.new do |s|
s.source_files = ['Sources/**/*.swift']
s.dependency 'TweetNacl', '~> 1.0.0'
- s.dependency 'NWWebSocket', '~> 0.5.3'
+ s.dependency 'NWWebSocket', '~> 0.5.4'
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '10.15'
diff --git a/PusherSwiftWithEncryption.podspec b/PusherSwiftWithEncryption.podspec
index 4d024a9e..39d9d9de 100644
--- a/PusherSwiftWithEncryption.podspec
+++ b/PusherSwiftWithEncryption.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'PusherSwiftWithEncryption'
- s.version = '10.1.4'
+ s.version = '10.1.5'
s.summary = 'A Pusher client library in Swift that supports encrypted channels'
s.homepage = 'https://github.com/pusher/pusher-websocket-swift'
s.license = 'MIT'
@@ -13,7 +13,7 @@ Pod::Spec.new do |s|
s.source_files = ['Sources/**/*.swift']
s.dependency 'TweetNacl', '~> 1.0.0'
- s.dependency 'NWWebSocket', '~> 0.5.3'
+ s.dependency 'NWWebSocket', '~> 0.5.4'
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '10.15'
diff --git a/Sources/Info.plist b/Sources/Info.plist
index 9ec4e705..afab4c54 100644
--- a/Sources/Info.plist
+++ b/Sources/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 10.1.4
+ 10.1.5
CFBundleSignature
????
CFBundleVersion
diff --git a/Sources/PusherSwift.swift b/Sources/PusherSwift.swift
index 0282a8ed..11261916 100644
--- a/Sources/PusherSwift.swift
+++ b/Sources/PusherSwift.swift
@@ -2,7 +2,7 @@ import Foundation
import NWWebSocket
let PROTOCOL = 7
-let VERSION = "10.1.4"
+let VERSION = "10.1.5"
// swiftlint:disable:next identifier_name
let CLIENT_NAME = "pusher-websocket-swift"
diff --git a/Tests/Info.plist b/Tests/Info.plist
index 11cf51e7..cef42959 100644
--- a/Tests/Info.plist
+++ b/Tests/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
BNDL
CFBundleShortVersionString
- 10.1.4
+ 10.1.5
CFBundleSignature
????
CFBundleVersion
diff --git a/Tests/Integration/PusherClientInitializationTests.swift b/Tests/Integration/PusherClientInitializationTests.swift
index e424ca30..1380cd1f 100644
--- a/Tests/Integration/PusherClientInitializationTests.swift
+++ b/Tests/Integration/PusherClientInitializationTests.swift
@@ -2,7 +2,7 @@ import XCTest
@testable import PusherSwift
-let VERSION = "10.1.4"
+let VERSION = "10.1.5"
class ClientInitializationTests: XCTestCase {
private var key: String!