Skip to content

Commit 0a5f6c4

Browse files
Merge pull request #358 from pusher/release/10.0.0
v10.0.0
2 parents 27e4cf9 + 086862c commit 0a5f6c4

8 files changed

+20
-8
lines changed

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,19 @@ 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.2.2...HEAD)
7+
## [Unreleased](https://github.com/pusher/pusher-websocket-swift/compare/10.0.0...HEAD)
8+
9+
## [10.0.0](https://github.com/pusher/pusher-websocket-swift/compare/9.2.2...10.0.0) - 2021-07-08
10+
11+
### Added
12+
13+
- The library now supports watchOS 6.0 and above.
14+
- [Auto-generated API docs.](https://pusher.github.io/pusher-websocket-swift/)
15+
16+
### Removed
17+
18+
- The deprecated `bind(_ callback:)` method on `Pusher` has been removed.
19+
- The deprecated `bind(eventName:callback:)` method on `PusherChannel` has been removed.
820

921
## [9.2.2](https://github.com/pusher/pusher-websocket-swift/compare/9.2.1...9.2.2) - 2021-03-11
1022

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.2.2'
3+
s.version = '10.0.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.2.2'
3+
s.version = '10.0.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
@@ -150,7 +150,7 @@ let package = Package(
150150
targets: ["YourPackage"]),
151151
],
152152
dependencies: [
153-
.package(url: "https://github.com/pusher/pusher-websocket-swift.git", from: "9.2.2"),
153+
.package(url: "https://github.com/pusher/pusher-websocket-swift.git", from: "10.0.0"),
154154
],
155155
targets: [
156156
.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.2.2</string>
18+
<string>10.0.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.2.2"
5+
let VERSION = "10.0.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.2.2</string>
18+
<string>10.0.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.2.2"
5+
let VERSION = "10.0.0"
66

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

0 commit comments

Comments
 (0)