Skip to content

Commit fec5528

Browse files
committed
Bump to 2.0.1
1 parent ea53f5d commit fec5528

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 2.0.1
4+
5+
* Fix potential forceful unwrapping of a nil in debug logging when reconnecting (thanks to [@psycotica0](https://github.com/psycotica0) for the spot)
6+
37
## 2.0.0
48

59
* Made the `Pusher` initializer take an instance of a `PusherClientOptions` struct ([@Noobish1](https://github.com/Noobish1))

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 = '2.0.0'
3+
s.version = '2.0.1'
44
s.summary = 'A Pusher client library in Swift'
55
s.homepage = 'https://github.com/pusher/pusher-websocket-swift'
66
s.license = 'MIT'

Source/PusherSwift.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import Foundation
99

1010
let PROTOCOL = 7
11-
let VERSION = "2.0.0"
11+
let VERSION = "2.0.1"
1212
let CLIENT_NAME = "pusher-websocket-swift"
1313

1414
public class Pusher {

Tests/PusherClientInitializationTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import Quick
1111
import Nimble
1212
import PusherSwift
1313

14-
let VERSION = "2.0.0"
14+
let VERSION = "2.0.1"
1515

1616
class PusherClientInitializationSpec: QuickSpec {
1717
override func spec() {

0 commit comments

Comments
 (0)