Skip to content

Commit

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

## 0.2.2

* Fix building for Carthage
* Update `TARGETED_DEVICE_FAMILY` for tvOS target to be correct (`3`)

## 0.2.1

* Remove Pods directory from repo
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.1'
s.version = '0.2.2'
s.summary = 'A Pusher client library in Swift'
s.homepage = 'https://github.com/pusher-community/pusher-websocket-swift'
s.license = 'MIT'
Expand Down
2 changes: 1 addition & 1 deletion Source/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.2.1</string>
<string>0.2.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
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.1"
let VERSION = "0.2.2"
let CLIENT_NAME = "pusher-websocket-swift"

public class Pusher {
Expand Down
2 changes: 1 addition & 1 deletion 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.1"
let VERSION = "0.2.2"

// Setup mock objects that we will need
public class MockWebSocket: WebSocket {
Expand Down

0 comments on commit 1b3d3b8

Please sign in to comment.