Skip to content

Commit 7567e79

Browse files
committed
Merge pull request #244 from BoltsFramework/nlutsenko.170
Bolts 1.7.0 🔩
2 parents f8db004 + 6fdf714 commit 7567e79

File tree

7 files changed

+43
-12
lines changed

7 files changed

+43
-12
lines changed

Bolts.podspec

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
Pod::Spec.new do |s|
22
s.name = 'Bolts'
3-
s.version = '1.6.0'
3+
s.version = '1.7.0'
44
s.summary = 'Bolts is a collection of low-level libraries designed to make developing mobile apps easier.'
55
s.description = <<-DESC
66
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.
77
88
The first component in Bolts is "tasks", which make organization of complex asynchronous code more manageable. A task is kind of like a JavaScript Promise, but available for iOS and Android.
9-
10-
For more information, see the [Bolts iOS API Reference](http://boltsframework.github.io/docs/ios/).
119
DESC
1210
s.homepage = 'https://github.com/BoltsFramework'
1311
s.license = 'BSD'

Bolts/Common/Bolts.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212

1313
NS_ASSUME_NONNULL_BEGIN
1414

15-
NSString *const BoltsFrameworkVersionString = @"1.6.0";
15+
NSString *const BoltsFrameworkVersionString = @"1.7.0";
1616

1717
NS_ASSUME_NONNULL_END

Bolts/Resources/Mac-Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.6.0</string>
18+
<string>1.7.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>1.6.0</string>
22+
<string>1.7.0</string>
2323
<key>NSPrincipalClass</key>
2424
<string></string>
2525
</dict>

Bolts/Resources/iOS-Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<key>CFBundlePackageType</key>
1414
<string>FMWK</string>
1515
<key>CFBundleShortVersionString</key>
16-
<string>1.6.0</string>
16+
<string>1.7.0</string>
1717
<key>CFBundleSignature</key>
1818
<string>????</string>
1919
<key>CFBundleSupportedPlatforms</key>
@@ -22,7 +22,7 @@
2222
<string>iPhoneOS</string>
2323
</array>
2424
<key>CFBundleVersion</key>
25-
<string>1.6.0</string>
25+
<string>1.7.0</string>
2626
<key>MinimumOSVersion</key>
2727
<string>6.0</string>
2828
</dict>

Bolts/Resources/tvOS-Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.6.0</string>
18+
<string>1.7.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>1.6.0</string>
22+
<string>1.7.0</string>
2323
<key>NSPrincipalClass</key>
2424
<string></string>
2525
</dict>

Bolts/Resources/watchOS-Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.6.0</string>
18+
<string>1.7.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>1.6.0</string>
22+
<string>1.7.0</string>
2323
<key>NSPrincipalClass</key>
2424
<string></string>
2525
</dict>

CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,38 @@
11
# Bolts CHANGELOG
22

3+
## 1.7.0
4+
5+
**New**
6+
- Added `BFTask.+taskForCompletionOfAnyTask:`.
7+
This method creates a task that will be completed when first of the provided task completes.
8+
[#229](https://github.com/BoltsFramework/Bolts-ObjC/pull/229)
9+
by [Florent Vilmart](https://github.com/flovilmart)
10+
- New constants defined for userInfo keys of multi-error/multi-exception.
11+
[#238](https://github.com/BoltsFramework/Bolts-ObjC/pull/238)
12+
by [Takeru Chuganji](https://github.com/hoppenichu)
13+
- Replaced `Bolts` class, `BoltsVersion` macro with a constant string.
14+
[#239](https://github.com/BoltsFramework/Bolts-ObjC/pull/239)
15+
by [Nikita Lutsenko](https://github.com/nlutsenko)
16+
17+
**Improved**
18+
- Reduced stack frame from continuation stack trace if task is completed.
19+
[#237](https://github.com/BoltsFramework/Bolts-ObjC/pull/237)
20+
by [Nikita Lutsenko](https://github.com/nlutsenko)
21+
22+
**Fixed**
23+
- Fixed disposing of `BFCancellationToken` when it has registrations.
24+
[#226](https://github.com/BoltsFramework/Bolts-ObjC/pull/226)
25+
by [Nikita Lutsenko](https://github.com/nlutsenko)
26+
- Fixed and improved documentation.
27+
[#230](https://github.com/BoltsFramework/Bolts-ObjC/pull/230)
28+
by [Paweł Wrzosek](https://github.com/wzs)
29+
- Fix warnings that surfaced in the release version of Xcode 7.3.
30+
[#231](https://github.com/BoltsFramework/Bolts-ObjC/pull/231)
31+
by [Nikita Lutsenko](https://github.com/nlutsenko)
32+
- Fixed edge case scenario of `BFTask.+taskForCompletionOfAllTasks:` wouldn't finish or wouldn't be cancelled.
33+
[#235](https://github.com/BoltsFramework/Bolts-ObjC/pull/235)
34+
by [Nikita Lutsenko](https://github.com/nlutsenko)
35+
336
## 1.6.0
437

538
**New**

0 commit comments

Comments
 (0)