Skip to content

Commit 10df1d0

Browse files
Bump NWWebSocket library (#407)
* Bump NWWebSocket library --------- Co-authored-by: Pusher CI <pusher-ci@pusher.com>
1 parent 29c977a commit 10df1d0

13 files changed

+19
-15
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: macos-latest
1010
strategy:
1111
matrix:
12-
os: ['tvOS', 'watchOS', 'iOS']
12+
os: ['tvOS', 'iOS']
1313
steps:
1414
- uses: actions/checkout@v2
1515
- uses: maxim-lobanov/setup-xcode@v1

.swiftlint.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ opt_in_rules:
1717
- unneeded_parentheses_in_closure_argument
1818
- vertical_whitespace_between_cases
1919
- vertical_whitespace_closing_braces
20+
- redundant_objc_attribute
21+
22+
disabled_rules:
23+
- redundant_objc_attribute
2024

2125
identifier_name:
2226
excluded:

Cartfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
github "bitmark-inc/tweetnacl-swiftwrap" ~> 1.0
2-
github "pusher/NWWebSocket" ~> 0.5.2
2+
github "pusher/NWWebSocket" ~> 0.5.3

Cartfile.resolved

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
github "bitmark-inc/tweetnacl-swiftwrap" "1.1.0"
2-
github "pusher/NWWebSocket" "0.5.2"
2+
github "pusher/NWWebSocket" "0.5.3"

Package.resolved

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ let package = Package(
99
.library(name: "PusherSwift", targets: ["PusherSwift"])
1010
],
1111
dependencies: [
12-
.package(url: "https://github.com/pusher/NWWebSocket.git", .upToNextMajor(from: "0.5.2")),
12+
.package(url: "https://github.com/pusher/NWWebSocket.git", .upToNextMajor(from: "0.5.3")),
1313
.package(url: "https://github.com/bitmark-inc/tweetnacl-swiftwrap", .upToNextMajor(from: "1.0.0")),
1414
],
1515
targets: [

PusherSwift.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'PusherSwift'
3-
s.version = '10.1.2'
3+
s.version = '10.1.3'
44
s.summary = 'A Pusher client library in Swift'
55
s.homepage = 'https://github.com/pusher/pusher-websocket-swift'
66
s.license = 'MIT'
@@ -13,7 +13,7 @@ Pod::Spec.new do |s|
1313
s.source_files = ['Sources/**/*.swift']
1414

1515
s.dependency 'TweetNacl', '~> 1.0.0'
16-
s.dependency 'NWWebSocket', '~> 0.5.2'
16+
s.dependency 'NWWebSocket', '~> 0.5.3'
1717

1818
s.ios.deployment_target = '13.0'
1919
s.osx.deployment_target = '10.15'

PusherSwiftWithEncryption.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'PusherSwiftWithEncryption'
3-
s.version = '10.1.2'
3+
s.version = '10.1.3'
44
s.summary = 'A Pusher client library in Swift that supports encrypted channels'
55
s.homepage = 'https://github.com/pusher/pusher-websocket-swift'
66
s.license = 'MIT'
@@ -13,7 +13,7 @@ Pod::Spec.new do |s|
1313
s.source_files = ['Sources/**/*.swift']
1414

1515
s.dependency 'TweetNacl', '~> 1.0.0'
16-
s.dependency 'NWWebSocket', '~> 0.5.2'
16+
s.dependency 'NWWebSocket', '~> 0.5.3'
1717

1818
s.ios.deployment_target = '13.0'
1919
s.osx.deployment_target = '10.15'

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1163,7 +1163,7 @@ For full details see the [client events documentation](https://pusher.com/docs/c
11631163

11641164
There are a set of tests for the library that can be run using the standard method (Command-U in Xcode).
11651165

1166-
The tests also get run on [Travis-CI](https://travis-ci.org/pusher/pusher-websocket-swift). See [.travis.yml](https://github.com/pusher/pusher-websocket-swift/blob/master/.travis.yml) for details on how the Travis tests are run.
1166+
The tests also get run on Github Actions, see [CI Action](https://github.com/pusher/pusher-websocket-swift/actions/workflows/ci.yml)
11671167

11681168
## Extensions
11691169

Sources/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>10.1.2</string>
18+
<string>10.1.3</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

0 commit comments

Comments
 (0)