diff --git a/Bolts.podspec b/Bolts.podspec
index 1db88f71d..7d5fba627 100644
--- a/Bolts.podspec
+++ b/Bolts.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Bolts"
- s.version = "1.1.3"
+ s.version = "1.1.4"
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/Common/BoltsVersion.h b/Bolts/Common/BoltsVersion.h
index 24e802ed5..866d9543d 100644
--- a/Bolts/Common/BoltsVersion.h
+++ b/Bolts/Common/BoltsVersion.h
@@ -1 +1 @@
-#define BOLTS_VERSION @"1.1.3"
+#define BOLTS_VERSION @"1.1.4"
diff --git a/Bolts/Resources/Mac-Info.plist b/Bolts/Resources/Mac-Info.plist
index 782220f1d..4a8dedfda 100644
--- a/Bolts/Resources/Mac-Info.plist
+++ b/Bolts/Resources/Mac-Info.plist
@@ -15,11 +15,11 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 1.1.3
+ 1.1.4
CFBundleSignature
????
CFBundleVersion
- $(CURRENT_PROJECT_VERSION)
+ 1.1.4
NSPrincipalClass
diff --git a/Bolts/Resources/iOS-Info.plist b/Bolts/Resources/iOS-Info.plist
index 536b465eb..cba8f69b2 100644
--- a/Bolts/Resources/iOS-Info.plist
+++ b/Bolts/Resources/iOS-Info.plist
@@ -13,7 +13,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 1.0
+ 1.1.4
CFBundleSignature
????
CFBundleSupportedPlatforms
@@ -22,7 +22,7 @@
iPhoneOS
CFBundleVersion
- 1.0
+ 1.1.4
MinimumOSVersion
5.0
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0551a7479..8cb920a7a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,12 @@
# Bolts CHANGELOG
+## 1.1.4
+- New: Bolts for iOS is easily importable from Swift code (via `import Bolts`).
+- New: Added `BFTask +taskForCompletionOfAllTaskResults`.
+- New: Added `faulted` property on `BFTask`.
+- New: Made `BFTaskErrorDomain` and `BFTaskMultipleExceptionsException` constants publicly available.
+- New: `BFTask -description` now shows completed/cancelled/faulted status of a task.
+
## 1.1.3
- Made Bolts work if added as a subproject
- Support for iOS 8