Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bolts 1.8.2 🔩 #267

Merged
merged 1 commit into from
Jul 11, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Bolts.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Bolts'
s.version = '1.8.1'
s.version = '1.8.2'
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 Down
2 changes: 1 addition & 1 deletion Bolts/Common/Bolts.m
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@

NS_ASSUME_NONNULL_BEGIN

NSString *const BoltsFrameworkVersionString = @"1.8.1";
NSString *const BoltsFrameworkVersionString = @"1.8.2";

NS_ASSUME_NONNULL_END
4 changes: 2 additions & 2 deletions Bolts/Resources/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.8.1</string>
<string>1.8.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.8.1</string>
<string>1.8.2</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Bolts CHANGELOG

## 1.8.2

**Fixed**
- Fixed custom build frameworks script.
[#263](https://github.com/BoltsFramework/Bolts-ObjC/pull/263)
by [Nikita Lutsenko](https://github.com/nlutsenko)
- Fixed incorrect dynamic framework install name base and install name making dynamic framework not load in some cases.
[#266](https://github.com/BoltsFramework/Bolts-ObjC/pull/266)
by [Nikita Lutsenko](https://github.com/nlutsenko)
- Fixed compilation of dynamic frameworks for watchOS/tvOS when no code signing identity is present.
[#266](https://github.com/BoltsFramework/Bolts-ObjC/pull/266)
by [Nikita Lutsenko](https://github.com/nlutsenko)

## 1.8.1

**Fixed**
Expand Down