Skip to content

Commit

Permalink
Update NWWSocket to 0.5.4 (#421)
Browse files Browse the repository at this point in the history
* Update NWWSocket to 0.5.4

* Force re-run jobs

* Bump to version 10.1.5

---------

Co-authored-by: Pusher CI <pusher-ci@pusher.com>
  • Loading branch information
fbenevides and pusher-ci committed Dec 15, 2023
1 parent 9aa3370 commit fc32aa8
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Cartfile
@@ -1,2 +1,2 @@
github "bitmark-inc/tweetnacl-swiftwrap" ~> 1.0
github "pusher/NWWebSocket" ~> 0.5.3
github "pusher/NWWebSocket" ~> 0.5.4
2 changes: 1 addition & 1 deletion 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"
4 changes: 2 additions & 2 deletions Package.swift
Expand Up @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions 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'
Expand All @@ -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'
Expand Down
4 changes: 2 additions & 2 deletions 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'
Expand All @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion Sources/Info.plist
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>10.1.4</string>
<string>10.1.5</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion Sources/PusherSwift.swift
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion Tests/Info.plist
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>10.1.4</string>
<string>10.1.5</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion Tests/Integration/PusherClientInitializationTests.swift
Expand Up @@ -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!
Expand Down

0 comments on commit fc32aa8

Please sign in to comment.