Skip to content

Commit

Permalink
Bump to 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
hamchapman committed Jul 14, 2016
1 parent ea53f5d commit fec5528
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
Expand Down
2 changes: 1 addition & 1 deletion PusherSwift.podspec
Original file line number Diff line number Diff line change
@@ -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'
Expand Down
2 changes: 1 addition & 1 deletion Source/PusherSwift.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion Tests/PusherClientInitializationTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit fec5528

Please sign in to comment.