From 09859d051271c90443373d79312c72763e8e2825 Mon Sep 17 00:00:00 2001 From: Daniel Browne Date: Thu, 4 Mar 2021 12:44:59 +0000 Subject: [PATCH] v9.2.1 --- CHANGELOG.md | 9 ++++++++- PusherSwift.podspec | 2 +- PusherSwiftWithEncryption.podspec | 2 +- README.md | 2 +- Sources/Info.plist | 2 +- Sources/PusherSwift.swift | 2 +- Tests/Info.plist | 2 +- Tests/Integration/PusherClientInitializationTests.swift | 2 +- 8 files changed, 15 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 572f88f7..6b2fc518 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). -## [Unreleased](https://github.com/pusher/pusher-websocket-swift/compare/9.2.0...HEAD) +## [Unreleased](https://github.com/pusher/pusher-websocket-swift/compare/9.2.1...HEAD) + +## [9.2.1](https://github.com/pusher/pusher-websocket-swift/compare/9.2.0...9.2.1) - 2021-03-04 + +### Deprecated + +- Marked the legacy `bind(_ callback:)` method on `Pusher` as deprecated. +- Marked the legacy `bind(eventName:callback:)` method on `PusherChannel` as deprecated. ## [9.2.0](https://github.com/pusher/pusher-websocket-swift/compare/9.1.1...9.2.0) - 2021-01-15 diff --git a/PusherSwift.podspec b/PusherSwift.podspec index cb346c3e..3a9ddea9 100644 --- a/PusherSwift.podspec +++ b/PusherSwift.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'PusherSwift' - s.version = '9.2.0' + s.version = '9.2.1' s.summary = 'A Pusher client library in Swift' s.homepage = 'https://github.com/pusher/pusher-websocket-swift' s.license = 'MIT' diff --git a/PusherSwiftWithEncryption.podspec b/PusherSwiftWithEncryption.podspec index 4ce5b05c..0022be76 100644 --- a/PusherSwiftWithEncryption.podspec +++ b/PusherSwiftWithEncryption.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'PusherSwiftWithEncryption' - s.version = '9.2.0' + s.version = '9.2.1' s.summary = 'A Pusher client library in Swift that supports encrypted channels' s.homepage = 'https://github.com/pusher/pusher-websocket-swift' s.license = 'MIT' diff --git a/README.md b/README.md index a183dc2a..cbce0580 100644 --- a/README.md +++ b/README.md @@ -150,7 +150,7 @@ let package = Package( targets: ["YourPackage"]), ], dependencies: [ - .package(url: "https://github.com/pusher/pusher-websocket-swift.git", from: "9.2.0"), + .package(url: "https://github.com/pusher/pusher-websocket-swift.git", from: "9.2.1"), ], targets: [ .target( diff --git a/Sources/Info.plist b/Sources/Info.plist index b2a106dc..b9ba7707 100644 --- a/Sources/Info.plist +++ b/Sources/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 9.2.0 + 9.2.1 CFBundleSignature ???? CFBundleVersion diff --git a/Sources/PusherSwift.swift b/Sources/PusherSwift.swift index 81b8275a..e61d13ac 100644 --- a/Sources/PusherSwift.swift +++ b/Sources/PusherSwift.swift @@ -2,7 +2,7 @@ import Foundation import NWWebSocket let PROTOCOL = 7 -let VERSION = "9.2.0" +let VERSION = "9.2.1" // swiftlint:disable:next identifier_name let CLIENT_NAME = "pusher-websocket-swift" diff --git a/Tests/Info.plist b/Tests/Info.plist index 5fee436f..5a6b9f11 100644 --- a/Tests/Info.plist +++ b/Tests/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType BNDL CFBundleShortVersionString - 9.2.0 + 9.2.1 CFBundleSignature ???? CFBundleVersion diff --git a/Tests/Integration/PusherClientInitializationTests.swift b/Tests/Integration/PusherClientInitializationTests.swift index 691344bf..c31cf581 100644 --- a/Tests/Integration/PusherClientInitializationTests.swift +++ b/Tests/Integration/PusherClientInitializationTests.swift @@ -2,7 +2,7 @@ import XCTest @testable import PusherSwift -let VERSION = "9.2.0" +let VERSION = "9.2.1" class ClientInitializationTests: XCTestCase { private var key: String!