Skip to content

Commit

Permalink
Tag 6.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mxcl committed Jan 24, 2019
1 parent c531710 commit bef8971
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions Documentation/Installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ We recommend Carthage over CocoaPods, but both installation methods are supporte
use_frameworks!

target "Change Me!" do
pod "PromiseKit", "~> 6.0"
pod "PromiseKit", "~> 6.8"
end
```

Expand All @@ -34,14 +34,14 @@ CocoaPods are aware of this [issue](https://github.com/CocoaPods/CocoaPods/issue
## Carthage

```ruby
github "mxcl/PromiseKit" ~> 6.0
github "mxcl/PromiseKit" ~> 6.8
```

## SwiftPM

```swift
package.dependencies.append(
.package(url: "https://github.com/mxcl/PromiseKit", from: "6.0.0")
.package(url: "https://github.com/mxcl/PromiseKit", from: "6.8.0")
)
```

Expand Down
4 changes: 2 additions & 2 deletions PromiseKit.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -937,7 +937,7 @@
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 6.7.1;
CURRENT_PROJECT_VERSION = 6.8.0;
DEBUG_INFORMATION_FORMAT = dwarf;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
Expand Down Expand Up @@ -998,7 +998,7 @@
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 6.7.1;
CURRENT_PROJECT_VERSION = 6.8.0;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ In your [Podfile]:
use_frameworks!

target "Change Me!" do
pod "PromiseKit", "~> 6.0"
pod "PromiseKit", "~> 6.8"
end
```

Expand Down Expand Up @@ -113,7 +113,7 @@ All our extensions are separate repositories at the [PromiseKit organization].
Then don’t have them:

```ruby
pod "PromiseKit/CorePromise", "~> 6.0"
pod "PromiseKit/CorePromise", "~> 6.8"
```

> *Note:* Carthage installations come with no extensions by default.
Expand Down

0 comments on commit bef8971

Please sign in to comment.