Skip to content

Commit 1b3d3b8

Browse files
committed
Bump to version 0.2.2
1 parent 8ab49ff commit 1b3d3b8

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

CHANGELOG.md

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

3+
## 0.2.2
4+
5+
* Fix building for Carthage
6+
* Update `TARGETED_DEVICE_FAMILY` for tvOS target to be correct (`3`)
7+
38
## 0.2.1
49

510
* Remove Pods directory from repo

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

Source/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>0.2.1</string>
18+
<string>0.2.2</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

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.1"
18+
let VERSION = "0.2.2"
1919
let CLIENT_NAME = "pusher-websocket-swift"
2020

2121
public class Pusher {

Tests/PusherSwiftTests.swift

Lines changed: 1 addition & 1 deletion
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.1"
15+
let VERSION = "0.2.2"
1616

1717
// Setup mock objects that we will need
1818
public class MockWebSocket: WebSocket {

0 commit comments

Comments
 (0)