Skip to content

Commit 04aecc5

Browse files
committed
Bump to 0.2.3
1 parent 8f22982 commit 04aecc5

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
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+
## 0.2.3
4+
5+
* Make `unsentEvents` an array instead of a dictionary (fixes #29)
6+
37
## 0.2.2
48

59
* Fix building for Carthage

Podfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PODS:
22
- CryptoSwift (0.2.2)
33
- Nimble (3.0.0)
4-
- PusherSwift (0.2.2):
4+
- PusherSwift (0.2.3):
55
- CryptoSwift (~> 0.2.2)
66
- ReachabilitySwift (~> 2.3.3)
77
- Starscream (~> 1.1.1)
@@ -24,7 +24,7 @@ EXTERNAL SOURCES:
2424
SPEC CHECKSUMS:
2525
CryptoSwift: d382228d6301c09474132417878a741c2a2e68cd
2626
Nimble: 4c353d43735b38b545cbb4cb91504588eb5de926
27-
PusherSwift: f63003ec12901f55eb11133da89ddd3296af4452
27+
PusherSwift: 088a8bde5f9fa8c24efe710915d49f2b67c9edc4
2828
Quick: 563d0f6ec5f72e394645adb377708639b7dd38ab
2929
ReachabilitySwift: e0f6b6f280effb47731acfaaa2d5ffe223703793
3030
Starscream: d74dd8d122a6abd244d8d5e51f32891c796d0827

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 = '0.2.2'
3+
s.version = '0.2.3'
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
@@ -15,7 +15,7 @@ public typealias PusherUserInfoObject = Dictionary<String, AnyObject>
1515
public typealias PusherUserData = PresenceChannelMember
1616

1717
let PROTOCOL = 7
18-
let VERSION = "0.2.2"
18+
let VERSION = "0.2.3"
1919
let CLIENT_NAME = "pusher-websocket-swift"
2020

2121
public class Pusher {

Tests/PusherSwiftTests.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import Nimble
1212
import Starscream
1313
import PusherSwift
1414

15-
let VERSION = "0.2.2"
15+
let VERSION = "0.2.3"
1616

1717
// Setup mock objects that we will need
1818
public class MockWebSocket: WebSocket {
@@ -641,7 +641,7 @@ class PusherChannelSpec: QuickSpec {
641641
let parsedEqualsExpected = NSDictionary(dictionary: parsedSubscribeArgs!).isEqualToDictionary(NSDictionary(dictionary: expectedDict) as [NSObject : AnyObject])
642642
expect(parsedEqualsExpected).to(beTrue())
643643
}
644-
644+
645645
it("should send multipe client events with the same event name that were triggered before subscription was successful") {
646646
let chan = PusherChannel(name: "private-channel", connection: connection)
647647
connection.channels.channels["private-channel"] = chan

0 commit comments

Comments
 (0)