From f9f318c0cf85f96f7364543bbd8329964af8d8a8 Mon Sep 17 00:00:00 2001 From: Nikita Lutsenko Date: Wed, 6 Jul 2016 19:55:49 -0700 Subject: [PATCH] =?UTF-8?q?Bolts=201.8.0=20=F0=9F=94=A9=20(#259)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Bolts.podspec | 3 +-- Bolts/Common/Bolts.m | 2 +- Bolts/Resources/Info.plist | 4 ++-- CHANGELOG.md | 27 +++++++++++++++++++++++++++ 4 files changed, 31 insertions(+), 5 deletions(-) diff --git a/Bolts.podspec b/Bolts.podspec index 7d96c73eb..fa7953531 100644 --- a/Bolts.podspec +++ b/Bolts.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'Bolts' - s.version = '1.7.0' + s.version = '1.8.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. @@ -11,7 +11,6 @@ Pod::Spec.new do |s| s.license = 'BSD' s.authors = 'Parse' s.source = { :git => 'https://github.com/BoltsFramework/Bolts-ObjC.git', :tag => s.version.to_s } - s.documentation_url = 'http://boltsframework.github.io/docs/ios/' s.social_media_url = 'https://twitter.com/ParseIt' s.requires_arc = true diff --git a/Bolts/Common/Bolts.m b/Bolts/Common/Bolts.m index d56ddd411..7c447988b 100644 --- a/Bolts/Common/Bolts.m +++ b/Bolts/Common/Bolts.m @@ -12,6 +12,6 @@ NS_ASSUME_NONNULL_BEGIN -NSString *const BoltsFrameworkVersionString = @"1.7.0"; +NSString *const BoltsFrameworkVersionString = @"1.8.0"; NS_ASSUME_NONNULL_END diff --git a/Bolts/Resources/Info.plist b/Bolts/Resources/Info.plist index 36fda250f..5fa3efcab 100644 --- a/Bolts/Resources/Info.plist +++ b/Bolts/Resources/Info.plist @@ -15,11 +15,11 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 1.7.0 + 1.8.0 CFBundleSignature ???? CFBundleVersion - 1.7.0 + 1.8.0 NSPrincipalClass diff --git a/CHANGELOG.md b/CHANGELOG.md index efbe14646..d9369a1d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,32 @@ # Bolts CHANGELOG +## 1.8.0 + +**New** +- Deprecated exception catching in `BFTask`. This feature will be removed in `1.9.0`. + Read [here](https://github.com/BoltsFramework/Bolts-ObjC/issues/252) on the motivation and follow the discussion. + [#251](https://github.com/BoltsFramework/Bolts-ObjC/pull/251) + by [Nikita Lutsenko](https://github.com/nlutsenko) +- Added temporary API to opt-out from automatic `BFTask` exception catching. + [#251](https://github.com/BoltsFramework/Bolts-ObjC/pull/251) + by [Nikita Lutsenko](https://github.com/nlutsenko) +- Added no-side-effects version of `BFAppLinkNavigation.-navigate:` and `BFAppLinkNavigation.-navigateToAppLink:error:`. + [#245](https://github.com/BoltsFramework/Bolts-ObjC/pull/245) + by [Bruno de Carvalho](https://github.com/biasedbit) + +**Improved** +- Improved naming for `BFContinuationBlock` to avoid local variable shadowing. + [#258](https://github.com/BoltsFramework/Bolts-ObjC/pull/258) + by [Nikita Lutsenko](https://github.com/nlutsenko) + +**Fixed** +- Fixed exposure of internal headers in AppLinks subspec. + [#254](https://github.com/BoltsFramework/Bolts-ObjC/pull/254) + by [Nikita Lutsenko](https://github.com/nlutsenko) +- Fixed potential spurious thread wakeup when using `BFTask.-waitUntilFinished`. + [#247](https://github.com/BoltsFramework/Bolts-ObjC/pull/247) + by [Nikita Lutsenko](https://github.com/nlutsenko) + ## 1.7.0 **New**