Skip to content

Commit

Permalink
Bump to 0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
hamchapman committed Mar 2, 2016
1 parent 8f22982 commit 04aecc5
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.2.3

* Make `unsentEvents` an array instead of a dictionary (fixes #29)

## 0.2.2

* Fix building for Carthage
Expand Down
4 changes: 2 additions & 2 deletions Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PODS:
- CryptoSwift (0.2.2)
- Nimble (3.0.0)
- PusherSwift (0.2.2):
- PusherSwift (0.2.3):
- CryptoSwift (~> 0.2.2)
- ReachabilitySwift (~> 2.3.3)
- Starscream (~> 1.1.1)
Expand All @@ -24,7 +24,7 @@ EXTERNAL SOURCES:
SPEC CHECKSUMS:
CryptoSwift: d382228d6301c09474132417878a741c2a2e68cd
Nimble: 4c353d43735b38b545cbb4cb91504588eb5de926
PusherSwift: f63003ec12901f55eb11133da89ddd3296af4452
PusherSwift: 088a8bde5f9fa8c24efe710915d49f2b67c9edc4
Quick: 563d0f6ec5f72e394645adb377708639b7dd38ab
ReachabilitySwift: e0f6b6f280effb47731acfaaa2d5ffe223703793
Starscream: d74dd8d122a6abd244d8d5e51f32891c796d0827
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 = '0.2.2'
s.version = '0.2.3'
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 @@ -15,7 +15,7 @@ public typealias PusherUserInfoObject = Dictionary<String, AnyObject>
public typealias PusherUserData = PresenceChannelMember

let PROTOCOL = 7
let VERSION = "0.2.2"
let VERSION = "0.2.3"
let CLIENT_NAME = "pusher-websocket-swift"

public class Pusher {
Expand Down
4 changes: 2 additions & 2 deletions Tests/PusherSwiftTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import Nimble
import Starscream
import PusherSwift

let VERSION = "0.2.2"
let VERSION = "0.2.3"

// Setup mock objects that we will need
public class MockWebSocket: WebSocket {
Expand Down Expand Up @@ -641,7 +641,7 @@ class PusherChannelSpec: QuickSpec {
let parsedEqualsExpected = NSDictionary(dictionary: parsedSubscribeArgs!).isEqualToDictionary(NSDictionary(dictionary: expectedDict) as [NSObject : AnyObject])
expect(parsedEqualsExpected).to(beTrue())
}

it("should send multipe client events with the same event name that were triggered before subscription was successful") {
let chan = PusherChannel(name: "private-channel", connection: connection)
connection.channels.channels["private-channel"] = chan
Expand Down

0 comments on commit 04aecc5

Please sign in to comment.