diff --git a/CHANGELOG.md b/CHANGELOG.md
index 823b3aeb..f85e0675 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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
diff --git a/PusherSwift.podspec b/PusherSwift.podspec
index 6dd887aa..dbd381e0 100644
--- a/PusherSwift.podspec
+++ b/PusherSwift.podspec
@@ -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'
diff --git a/Source/Info.plist b/Source/Info.plist
index b9521449..33d5c6da 100644
--- a/Source/Info.plist
+++ b/Source/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 0.2.1
+ 0.2.2
CFBundleSignature
????
CFBundleVersion
diff --git a/Source/PusherSwift.swift b/Source/PusherSwift.swift
index f1cda712..b8ee0fa7 100644
--- a/Source/PusherSwift.swift
+++ b/Source/PusherSwift.swift
@@ -15,7 +15,7 @@ public typealias PusherUserInfoObject = Dictionary
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 {
diff --git a/Tests/PusherSwiftTests.swift b/Tests/PusherSwiftTests.swift
index 63d179e0..950deb1e 100644
--- a/Tests/PusherSwiftTests.swift
+++ b/Tests/PusherSwiftTests.swift
@@ -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 {