From 648e7eaf159d2507c5e61e42566701a9da8e3574 Mon Sep 17 00:00:00 2001 From: Nikita Lutsenko Date: Mon, 11 Jul 2016 19:54:37 -0700 Subject: [PATCH] =?UTF-8?q?Bolts=201.8.3=20=F0=9F=94=A9=20(#269)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Bolts.podspec | 2 +- Bolts/Common/Bolts.m | 2 +- Bolts/Resources/Info.plist | 4 ++-- CHANGELOG.md | 16 ++++++++++++---- 4 files changed, 16 insertions(+), 8 deletions(-) diff --git a/Bolts.podspec b/Bolts.podspec index 00b963d6d..88d24ed2f 100644 --- a/Bolts.podspec +++ b/Bolts.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'Bolts' - s.version = '1.8.2' + s.version = '1.8.3' 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/Bolts.m b/Bolts/Common/Bolts.m index 411eef201..80e906239 100644 --- a/Bolts/Common/Bolts.m +++ b/Bolts/Common/Bolts.m @@ -12,6 +12,6 @@ NS_ASSUME_NONNULL_BEGIN -NSString *const BoltsFrameworkVersionString = @"1.8.2"; +NSString *const BoltsFrameworkVersionString = @"1.8.3"; NS_ASSUME_NONNULL_END diff --git a/Bolts/Resources/Info.plist b/Bolts/Resources/Info.plist index e428c9ca3..940ba471f 100644 --- a/Bolts/Resources/Info.plist +++ b/Bolts/Resources/Info.plist @@ -15,11 +15,11 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 1.8.2 + 1.8.3 CFBundleSignature ???? CFBundleVersion - 1.8.2 + 1.8.3 NSPrincipalClass diff --git a/CHANGELOG.md b/CHANGELOG.md index 112ca5b36..54d66233a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,22 +1,30 @@ # Bolts CHANGELOG +## 1.8.3 + +**Fixed** +- Fix potential deadlock when using `BFTask.-waitUntilFinished`. + [#263](https://github.com/BoltsFramework/Bolts-ObjC/pull/263) + by [Nikita Lutsenko](https://github.com/nlutsenko) + + ## 1.8.2 **Fixed** -- Fixed custom build frameworks script. +- 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. +- 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. +- 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** -- Fixed compilation of dynamic frameworks due to codesigning requirements. +- Fixed compilation of dynamic frameworks due to codesigning requirements. [#260](https://github.com/BoltsFramework/Bolts-ObjC/pull/260) by [Nikita Lutsenko](https://github.com/nlutsenko)