Skip to content

Commit

Permalink
Merge pull request #34 from BoltsFramework/nlutsenko.120
Browse files Browse the repository at this point in the history
Bolts 1.2.0 🔩
  • Loading branch information
nlutsenko authored Jul 25, 2016
2 parents f184e5d + 1f12636 commit e1afa91
Show file tree
Hide file tree
Showing 10 changed files with 45 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Bolts-Swift.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Bolts-Swift'
s.version = '1.1.0'
s.version = '1.2.0'
s.license = { :type => 'BSD' }
s.summary = 'Bolts is a collection of low-level libraries designed to make developing mobile apps easier.'
s.homepage = 'https://github.com/BoltsFramework'
Expand Down
2 changes: 2 additions & 0 deletions BoltsSwift.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@
812DB53B1D3597BF00552C9F /* Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Debug.xcconfig; sourceTree = "<group>"; };
812DB53C1D3597BF00552C9F /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Release.xcconfig; sourceTree = "<group>"; };
812DB53D1D3597BF00552C9F /* Warnings.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Warnings.xcconfig; sourceTree = "<group>"; };
81951A901D46BA2F00958108 /* Version.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Version.xcconfig; sourceTree = "<group>"; };
81CC14EC1A9BE0A100B28F86 /* BoltsSwift.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = BoltsSwift.framework; sourceTree = BUILT_PRODUCTS_DIR; };
81CC14F61A9BE0A100B28F86 /* BoltsSwiftTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = BoltsSwiftTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
81D300631C93AF7300E1A1ED /* Errors.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Errors.swift; sourceTree = "<group>"; };
Expand Down Expand Up @@ -189,6 +190,7 @@
812DB52B1D3597BF00552C9F /* BoltsSwiftTests-iOS.xcconfig */,
812DB52C1D3597BF00552C9F /* BoltsSwiftTests-macOS.xcconfig */,
812DB52D1D3597BF00552C9F /* BoltsSwiftTests-tvOS.xcconfig */,
81951A901D46BA2F00958108 /* Version.xcconfig */,
812DB52E1D3597BF00552C9F /* Shared */,
);
path = Configurations;
Expand Down
26 changes: 25 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,29 @@
# Change Log

## [1.1.0](https://github.com/BoltsFramework/Bolts-Swift/tree/1.1.0) (2016-05-03)
## [1.2.0](https://github.com/BoltsFramework/Bolts-Swift/tree/1.2.0) (2016-07-25)
[Full Changelog](https://github.com/BoltsFramework/Bolts-Swift/compare/1.1.0...1.2.0)

**Implemented enhancements:**

- Implement new set of continuations for error-only use case. [\#17](https://github.com/BoltsFramework/Bolts-Swift/issues/17)
- Make all 'trySet', 'set' functions to use explicit argument labels. [\#30](https://github.com/BoltsFramework/Bolts-Swift/pull/30) ([nlutsenko](https://github.com/nlutsenko))
- Update project/tests for Xcode 8 and Swift 2.3. [\#27](https://github.com/BoltsFramework/Bolts-Swift/pull/27) ([nlutsenko](https://github.com/nlutsenko))
- Make CompletedCondtion optional, should improve memory usage slightly. [\#25](https://github.com/BoltsFramework/Bolts-Swift/pull/25) ([richardjrossiii](https://github.com/richardjrossiii))
- Add continueOnErrorWith, continueOnErrorWithTask. [\#18](https://github.com/BoltsFramework/Bolts-Swift/pull/18) ([nlutsenko](https://github.com/nlutsenko))

**Fixed bugs:**

- Resolve retain cycle in Task [\#19](https://github.com/BoltsFramework/Bolts-Swift/pull/19) ([mmtootmm](https://github.com/mmtootmm))

**Merged pull requests:**

- Migrate all targets to shared configurations from xctoolchain. [\#32](https://github.com/BoltsFramework/Bolts-Swift/pull/32) ([nlutsenko](https://github.com/nlutsenko))
- Add swiftlint to Travis-CI. [\#29](https://github.com/BoltsFramework/Bolts-Swift/pull/29) ([nlutsenko](https://github.com/nlutsenko))
- Split Task into multiple files. [\#24](https://github.com/BoltsFramework/Bolts-Swift/pull/24) ([richardjrossiii](https://github.com/richardjrossiii))
- Update installation instructions in README. [\#22](https://github.com/BoltsFramework/Bolts-Swift/pull/22) ([nlutsenko](https://github.com/nlutsenko))
- Refactor continuation to be better, faster, stronger. [\#20](https://github.com/BoltsFramework/Bolts-Swift/pull/20) ([richardjrossiii](https://github.com/richardjrossiii))

## [1.1.0](https://github.com/BoltsFramework/Bolts-Swift/tree/1.1.0) (2016-05-04)
[Full Changelog](https://github.com/BoltsFramework/Bolts-Swift/compare/1.0.1...1.1.0)

**Implemented enhancements:**
Expand All @@ -14,6 +37,7 @@

**Merged pull requests:**

- Bolts 1.1.0 🔩 [\#16](https://github.com/BoltsFramework/Bolts-Swift/pull/16) ([nlutsenko](https://github.com/nlutsenko))
- Add more tests and fix documentation. [\#12](https://github.com/BoltsFramework/Bolts-Swift/pull/12) ([nlutsenko](https://github.com/nlutsenko))
- Use Xcode 7.3 for Travis-CI. [\#11](https://github.com/BoltsFramework/Bolts-Swift/pull/11) ([nlutsenko](https://github.com/nlutsenko))

Expand Down
1 change: 1 addition & 0 deletions Configurations/BoltsSwift-iOS.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

#include "Shared/Platform/iOS.xcconfig"
#include "Shared/Product/DynamicFramework.xcconfig"
#include "Version.xcconfig"

PRODUCT_NAME = BoltsSwift
PRODUCT_BUNDLE_IDENTIFIER = com.bolts.swift.ios
Expand Down
1 change: 1 addition & 0 deletions Configurations/BoltsSwift-macOS.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

#include "Shared/Platform/macOS.xcconfig"
#include "Shared/Product/DynamicFramework.xcconfig"
#include "Version.xcconfig"

PRODUCT_NAME = BoltsSwift
PRODUCT_BUNDLE_IDENTIFIER = com.bolts.swift.macos
Expand Down
1 change: 1 addition & 0 deletions Configurations/BoltsSwift-tvOS.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

#include "Shared/Platform/tvOS.xcconfig"
#include "Shared/Product/DynamicFramework.xcconfig"
#include "Version.xcconfig"

PRODUCT_NAME = BoltsSwift
PRODUCT_BUNDLE_IDENTIFIER = com.bolts.swift.tvos
Expand Down
1 change: 1 addition & 0 deletions Configurations/BoltsSwift-watchOS.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

#include "Shared/Platform/watchOS.xcconfig"
#include "Shared/Product/DynamicFramework.xcconfig"
#include "Version.xcconfig"

PRODUCT_NAME = BoltsSwift
PRODUCT_BUNDLE_IDENTIFIER = com.bolts.swift.watchos
Expand Down
10 changes: 10 additions & 0 deletions Configurations/Version.xcconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
//
// Copyright (c) 2016, Facebook, Inc.
// All rights reserved.
//
// This source code is licensed under the BSD-style license found in the
// LICENSE file in the root directory of this source tree. An additional grant
// of patent rights can be found in the PATENTS file in the same directory.
//

BOLTS_SWIFT_VERSION = 1.2.0
4 changes: 2 additions & 2 deletions Sources/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.1.0</string>
<string>$(BOLTS_SWIFT_VERSION)</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.1.0</string>
<string>$(BOLTS_SWIFT_VERSION)</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
Expand Down
2 changes: 1 addition & 1 deletion Vendor/xctoolchain

0 comments on commit e1afa91

Please sign in to comment.