From 1f92521fa92a2fb2aabd5e135a4e2e5dd6a09fbb Mon Sep 17 00:00:00 2001 From: Nikita Lutsenko Date: Wed, 23 Sep 2015 13:28:26 -0700 Subject: [PATCH] Bolts 1.3.0 --- Bolts.podspec | 2 +- Bolts/Common/BoltsVersion.h | 2 +- Bolts/Resources/Mac-Info.plist | 4 ++-- Bolts/Resources/iOS-Info.plist | 4 ++-- Bolts/Resources/tvOS-Info.plist | 4 ++-- Bolts/Resources/watchOS-Info.plist | 6 +++--- CHANGELOG.md | 7 +++++++ 7 files changed, 18 insertions(+), 11 deletions(-) diff --git a/Bolts.podspec b/Bolts.podspec index 87a4b0c15..3a130b3e5 100644 --- a/Bolts.podspec +++ b/Bolts.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'Bolts' - s.version = '1.2.2' + s.version = '1.3.0' 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 6c12f8645..afb6fcbd2 100644 --- a/Bolts/Common/BoltsVersion.h +++ b/Bolts/Common/BoltsVersion.h @@ -1 +1 @@ -#define BOLTS_VERSION @"1.2.2" +#define BOLTS_VERSION @"1.3.0" diff --git a/Bolts/Resources/Mac-Info.plist b/Bolts/Resources/Mac-Info.plist index 070689524..ed7b81f9a 100644 --- a/Bolts/Resources/Mac-Info.plist +++ b/Bolts/Resources/Mac-Info.plist @@ -15,11 +15,11 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 1.2.2 + 1.3.0 CFBundleSignature ???? CFBundleVersion - 1.2.2 + 1.3.0 NSPrincipalClass diff --git a/Bolts/Resources/iOS-Info.plist b/Bolts/Resources/iOS-Info.plist index f70080999..9b4e16296 100644 --- a/Bolts/Resources/iOS-Info.plist +++ b/Bolts/Resources/iOS-Info.plist @@ -13,7 +13,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 1.2.2 + 1.3.0 CFBundleSignature ???? CFBundleSupportedPlatforms @@ -22,7 +22,7 @@ iPhoneOS CFBundleVersion - 1.2.2 + 1.3.0 MinimumOSVersion 5.0 diff --git a/Bolts/Resources/tvOS-Info.plist b/Bolts/Resources/tvOS-Info.plist index c0f558739..c0f667d00 100644 --- a/Bolts/Resources/tvOS-Info.plist +++ b/Bolts/Resources/tvOS-Info.plist @@ -15,11 +15,11 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 1.2.2 + 1.3.0 CFBundleSignature ???? CFBundleVersion - 1.2.2 + 1.3.0 NSPrincipalClass diff --git a/Bolts/Resources/watchOS-Info.plist b/Bolts/Resources/watchOS-Info.plist index 29980972a..0f0708cf9 100644 --- a/Bolts/Resources/watchOS-Info.plist +++ b/Bolts/Resources/watchOS-Info.plist @@ -7,7 +7,7 @@ CFBundleExecutable $(EXECUTABLE_NAME) CFBundleIdentifier - com.bolts.boltswatch + com.bolts.watchos CFBundleInfoDictionaryVersion 6.0 CFBundleName @@ -15,11 +15,11 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 1.2.2 + 1.3.0 CFBundleSignature ???? CFBundleVersion - 1.2.2 + 1.3.0 NSPrincipalClass diff --git a/CHANGELOG.md b/CHANGELOG.md index c8e47f4e5..0e10f8843 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Bolts CHANGELOG +## 1.3.0 +**New** +- Bolts now fully supports watchOS 2. +- Bolts for iOS is now compilied with Bitcode slice. +**Fixed** +- Potential undefined behavior caused by casting block types. + ## 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.