Skip to content
This repository was archived by the owner on Aug 29, 2022. It is now read-only.

Commit 13dff9f

Browse files
authored
Merge pull request #113 from bignerdranch/zwaldowski/pod-bits
2.2 release and Swift 2.3 Podspec fix
2 parents bd5dec1 + 2b30ea7 commit 13dff9f

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.jazzy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ head: |
3939
<link rel="shortcut icon" type="image/x-icon" href="//www.bignerdranch.com/favicon.png">
4040
hide_documentation_coverage: true
4141
module: Deferred
42-
module_version: "2.0.0"
42+
module_version: "2.2.0-rc.1"
4343
# podspec: BNRDeferred.podspec
4444
root_url: "http://bignerdranch.github.io/Deferred/"
4545
swift_version: 2.2

BNRDeferred.podspec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Pod::Spec.new do |s|
33
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
44

55
s.name = "BNRDeferred"
6-
s.version = "2.0.0"
6+
s.version = "2.2.0-rc.1"
77
s.summary = "Work with values that haven't been determined yet."
88

99
s.description = <<-DESC
@@ -45,5 +45,6 @@ Pod::Spec.new do |s|
4545

4646
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
4747
s.requires_arc = true
48+
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '2.3' }
4849

4950
end

Configurations/Base.xcconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR
2929
CLANG_WARN_INFINITE_RECURSION = YES
3030
CLANG_WARN_SUSPICIOUS_MOVE = YES
3131

32-
CURRENT_PROJECT_VERSION = 2.0.0
32+
CURRENT_PROJECT_VERSION = 2.2.0
3333
VERSION_INFO_PREFIX =
3434
VERSIONING_SYSTEM = apple-generic
3535

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ There are a few different options to install Deferred.
427427
Add the following to your Cartfile:
428428

429429
```
430-
github "bignerdranch/Deferred" ~> 2.0
430+
github "bignerdranch/Deferred" "2.2.0-rc.1"
431431
```
432432

433433
Then run `carthage update`.
@@ -444,7 +444,7 @@ for up to date installation instructions.
444444
Add the following to your [Podfile](http://guides.cocoapods.org/using/the-podfile.html):
445445

446446
```ruby
447-
pod 'BNRDeferred', '~> 2.0'
447+
pod 'BNRDeferred', '~> 2.2'
448448
```
449449

450450
You will also need to make sure you're opting into using frameworks:

0 commit comments

Comments
 (0)