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

Commit

Permalink
Merge pull request #256 from bignerdranch/zwaldowski/4.0-beta-1
Browse files Browse the repository at this point in the history
Tag 4.0.0 beta 1
  • Loading branch information
zwaldowski committed Sep 20, 2018
2 parents 96a5617 + dce55fa commit b48303c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion BNRDeferred.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.name = "BNRDeferred"
s.version = "4.0.0-alpha.1"
s.version = "4.0.0-beta.1"
s.summary = "Work with values that haven't been determined yet."

s.description = <<-DESC
Expand Down
6 changes: 3 additions & 3 deletions Documentation/Guide/Getting Started.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ There are a few different options to install Deferred.
Add the following to your Cartfile:

```
github "bignerdranch/Deferred" "master"
github "bignerdranch/Deferred" "4.0.0-beta.1"
```

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

```ruby
pod 'BNRDeferred', :git => 'https://github.com/bignerdranch/Deferred.git', :branch => 'master'
pod 'BNRDeferred', '~> 4.0-beta'
```

You will also need to make sure you're opting into using frameworks:
Expand All @@ -54,7 +54,7 @@ import PackageDescription
let package = Package(
name: "My Extremely Nerdy App",
dependencies: [
.package(url: "https://github.com/bignerdranch/Deferred.git", branch: "master"),
.package(url: "https://github.com/bignerdranch/Deferred.git", from: "4.0.0-beta.1"),
]
)
```

0 comments on commit b48303c

Please sign in to comment.