diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b5c22af..bdbcc9f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 2.0.1 + +* Fix potential forceful unwrapping of a nil in debug logging when reconnecting (thanks to [@psycotica0](https://github.com/psycotica0) for the spot) + ## 2.0.0 * Made the `Pusher` initializer take an instance of a `PusherClientOptions` struct ([@Noobish1](https://github.com/Noobish1)) diff --git a/PusherSwift.podspec b/PusherSwift.podspec index eaf97aba..7d15cc9b 100644 --- a/PusherSwift.podspec +++ b/PusherSwift.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'PusherSwift' - s.version = '2.0.0' + s.version = '2.0.1' s.summary = 'A Pusher client library in Swift' s.homepage = 'https://github.com/pusher/pusher-websocket-swift' s.license = 'MIT' diff --git a/Source/PusherSwift.swift b/Source/PusherSwift.swift index 8c9a69d0..93a3d026 100644 --- a/Source/PusherSwift.swift +++ b/Source/PusherSwift.swift @@ -8,7 +8,7 @@ import Foundation let PROTOCOL = 7 -let VERSION = "2.0.0" +let VERSION = "2.0.1" let CLIENT_NAME = "pusher-websocket-swift" public class Pusher { diff --git a/Tests/PusherClientInitializationTests.swift b/Tests/PusherClientInitializationTests.swift index 85d7a4a4..45021b4e 100644 --- a/Tests/PusherClientInitializationTests.swift +++ b/Tests/PusherClientInitializationTests.swift @@ -11,7 +11,7 @@ import Quick import Nimble import PusherSwift -let VERSION = "2.0.0" +let VERSION = "2.0.1" class PusherClientInitializationSpec: QuickSpec { override func spec() {