Skip to content

Commit 2913b4f

Browse files
Merge pull request #317 from pusher/release/9.1.0
v9.1.0
2 parents 7f2246d + 532b2a3 commit 2913b4f

File tree

8 files changed

+27
-8
lines changed

8 files changed

+27
-8
lines changed

CHANGELOG.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,26 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7-
## [Unreleased](https://github.com/pusher/pusher-websocket-swift/compare/9.0.0...HEAD)
7+
## [Unreleased](https://github.com/pusher/pusher-websocket-swift/compare/9.1.0...HEAD)
8+
9+
## [9.1.0](https://github.com/pusher/pusher-websocket-swift/compare/9.0.0...9.1.0) - 2020-12-07
10+
11+
### Added
12+
13+
- Encrypted channels are now support by default by the `PusherSwift` target.
14+
- Encrypted channels are now supported if integrating the SDK via Swift Package Manager.
15+
- tvOS as a target platform is now supported regardless of if encrypted channels are used.
16+
- [tweetnacl-swiftwrap](https://github.com/bitmark-inc/tweetnacl-swiftwrap) is now a dependency.
17+
18+
### Changed
19+
20+
- Migrated the WebSocket client code to use our [NWWebSocket](https://github.com/pusher/NWWebSocket) library.
21+
- Improvements to WebSocket reconnection functionality for unstable connections, or connections which migrate from Wi-Fi to Cellular (or vice versa).
22+
23+
### Removed
24+
25+
- The `PusherSwiftWithEncryption` target has been removed.
26+
- Reachability is no longer a dependency.
827

928
## [9.0.0](https://github.com/pusher/pusher-websocket-swift/compare/8.0.0...9.0.0) - 2020-10-09
1029

PusherSwift.podspec

Lines changed: 1 addition & 1 deletion
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 = '9.0.0'
3+
s.version = '9.1.0'
44
s.summary = 'A Pusher client library in Swift'
55
s.homepage = 'https://github.com/pusher/pusher-websocket-swift'
66
s.license = 'MIT'

PusherSwiftWithEncryption.podspec

Lines changed: 1 addition & 1 deletion
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 = '9.0.0'
3+
s.version = '9.1.0'
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'

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ let package = Package(
145145
targets: ["YourPackage"]),
146146
],
147147
dependencies: [
148-
.package(url: "https://github.com/pusher/pusher-websocket-swift.git", from: "9.0.0"),
148+
.package(url: "https://github.com/pusher/pusher-websocket-swift.git", from: "9.1.0"),
149149
],
150150
targets: [
151151
.target(

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>9.0.0</string>
18+
<string>9.1.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

Sources/PusherSwift.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import Foundation
22
import NWWebSocket
33

44
let PROTOCOL = 7
5-
let VERSION = "9.0.0"
5+
let VERSION = "9.1.0"
66
// swiftlint:disable:next identifier_name
77
let CLIENT_NAME = "pusher-websocket-swift"
88

Tests/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>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>9.0.0</string>
18+
<string>9.1.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

Tests/Integration/PusherClientInitializationTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import XCTest
22

33
@testable import PusherSwift
44

5-
let VERSION = "9.0.0"
5+
let VERSION = "9.1.0"
66

77
class ClientInitializationTests: XCTestCase {
88
var key: String!

0 commit comments

Comments
 (0)