Skip to content

Commit

Permalink
Bolts 1.8.0 馃敥 (#259)
Browse files Browse the repository at this point in the history
  • Loading branch information
nlutsenko committed Jul 7, 2016
1 parent ab81902 commit f9f318c
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 5 deletions.
3 changes: 1 addition & 2 deletions 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.
Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion Bolts/Common/Bolts.m
Expand Up @@ -12,6 +12,6 @@

NS_ASSUME_NONNULL_BEGIN

NSString *const BoltsFrameworkVersionString = @"1.7.0";
NSString *const BoltsFrameworkVersionString = @"1.8.0";

NS_ASSUME_NONNULL_END
4 changes: 2 additions & 2 deletions Bolts/Resources/Info.plist
Expand Up @@ -15,11 +15,11 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.7.0</string>
<string>1.8.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.7.0</string>
<string>1.8.0</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
Expand Down
27 changes: 27 additions & 0 deletions 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**
Expand Down

0 comments on commit f9f318c

Please sign in to comment.