diff --git a/Bolts.podspec b/Bolts.podspec index 1db88f71dc30e32e4864d0f2c3f5790f83970337..7d5fba627ae7accba204beb3c76b4342cfc5f745 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 24e802ed5215f392d584a97c24f022ee1d6abcee..866d9543dc842e8cff6f3bf33361c4f8b077b9b0 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 782220f1d2ae4124c24af0ec4e5cd5ad9e48e443..4a8dedfda45bc044dc11e86b62123f8dda40ce24 100644 --- a/Bolts/Resources/Mac-Info.plist +++ b/Bolts/Resources/Mac-Info.plist @@ -15,11 +15,11 @@ <key>CFBundlePackageType</key> <string>FMWK</string> <key>CFBundleShortVersionString</key> - <string>1.1.3</string> + <string>1.1.4</string> <key>CFBundleSignature</key> <string>????</string> <key>CFBundleVersion</key> - <string>$(CURRENT_PROJECT_VERSION)</string> + <string>1.1.4</string> <key>NSPrincipalClass</key> <string></string> </dict> diff --git a/Bolts/Resources/iOS-Info.plist b/Bolts/Resources/iOS-Info.plist index 536b465eb0564dd13d2b531a318295770e35ed61..cba8f69b26989c877b23d9f28186b0899ebc9ac2 100644 --- a/Bolts/Resources/iOS-Info.plist +++ b/Bolts/Resources/iOS-Info.plist @@ -13,7 +13,7 @@ <key>CFBundlePackageType</key> <string>FMWK</string> <key>CFBundleShortVersionString</key> - <string>1.0</string> + <string>1.1.4</string> <key>CFBundleSignature</key> <string>????</string> <key>CFBundleSupportedPlatforms</key> @@ -22,7 +22,7 @@ <string>iPhoneOS</string> </array> <key>CFBundleVersion</key> - <string>1.0</string> + <string>1.1.4</string> <key>MinimumOSVersion</key> <string>5.0</string> </dict> diff --git a/CHANGELOG.md b/CHANGELOG.md index 0551a74797418bf076a65778a58e88b4cb4c8b82..8cb920a7ae4ff6bc0b633542bd2f1bde27748173 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