diff --git a/Bolts.podspec b/Bolts.podspec
index 008ae9310..ec0c4b847 100644
--- a/Bolts.podspec
+++ b/Bolts.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Bolts"
- s.version = "1.2.1"
+ s.version = "1.2.2"
s.summary = "Bolts is a collection of low-level libraries designed to make developing mobile apps easier."
s.description = <<-DESC
Bolts was designed by Parse and Facebook for our own internal use, and we have decided to open source these libraries to make them available to others. Using these libraries does not require using any Parse services. Nor do they require having a Parse or Facebook developer account.
diff --git a/Bolts/Resources/Mac-Info.plist b/Bolts/Resources/Mac-Info.plist
index a861391dd..070689524 100644
--- a/Bolts/Resources/Mac-Info.plist
+++ b/Bolts/Resources/Mac-Info.plist
@@ -15,11 +15,11 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 1.2.1
+ 1.2.2
CFBundleSignature
????
CFBundleVersion
- 1.2.1
+ 1.2.2
NSPrincipalClass
diff --git a/Bolts/Resources/iOS-Info.plist b/Bolts/Resources/iOS-Info.plist
index 362243b2e..f70080999 100644
--- a/Bolts/Resources/iOS-Info.plist
+++ b/Bolts/Resources/iOS-Info.plist
@@ -13,7 +13,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 1.2.1
+ 1.2.2
CFBundleSignature
????
CFBundleSupportedPlatforms
@@ -22,7 +22,7 @@
iPhoneOS
CFBundleVersion
- 1.2.1
+ 1.2.2
MinimumOSVersion
5.0
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 087e6f706..c8e47f4e5 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,11 @@
# Bolts CHANGELOG
+## 1.2.2
+- New: Added bitcode support when built from source for iOS 9.
+- New: `BFTask` and `BFTaskCompletionSource` now supports Obj-C Generics for types of the result.
+- Fixed: Resolved a crash when creating a BFURL when `target_url` is not a string (null or a number).
+- Fixed: `BFIncludeStatusBarInSizeAlways` is properly handled now.
+
## 1.2.1
- Improved: Removed the need to check canOpenURL: and just use openURL: directly which improves App Links behavior on iOS 9.
- Fixed: Potentially never completed task if continuation returns a task and cancellation was requested.