Skip to content

Commit 6e3d236

Browse files
committed
7.0.0-rc1
1 parent 9a5a710 commit 6e3d236

File tree

2 files changed

+19
-9
lines changed

2 files changed

+19
-9
lines changed

Documents/Installation.md

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,33 @@
1-
We support SwiftPM:
1+
We support [SwiftPM]:
22

33
```swift
44
package.dependencies.append(
5-
.package(url: "https://github.com/mxcl/PromiseKit", from: "7.0.0-alpha.1")
5+
.package(url: "https://github.com/mxcl/PromiseKit", from: "7.0.0-rc1")
66
)
77

88
package.targets.append(
9-
.target(name: "MyTarget", dependencies: ["PromiseKit", "PMKFoundation"])
9+
.target(name: "", dependencies: [
10+
.product(name: "PromiseKit", package: "PromiseKit"),
11+
.product(name: "PMKFoundation", package: "PromiseKit"),
12+
.product(name: "PMKMapKit", package: "PromiseKit"),
13+
])
1014
)
1115
```
1216

13-
Or CocoaPods:
17+
And CocoaPods:
1418

1519
```ruby
16-
pod "PromiseKit", "~> 6.8"
17-
pod "PromiseKit/Foundation", "~> 6.8"
20+
pod "PromiseKit", "~> 7.0.0-rc1"
21+
pod "PromiseKit/Foundation", "~> 7.0.0-rc1"
22+
pod "PromiseKit/MapKit", "~> 7.0.0-rc1"
1823
```
1924

2025
## Carthage
2126

22-
We will support Carthage if you can PR an automated solution for generating the `.xcodeproj` on release.
23-
It will need to support all our extensions.
27+
We will support [Carthage] if you can PR an automated solution for generating
28+
the `.xcodeproj` on release. It will need to support all our extensions.
29+
30+
31+
[SwiftPM]: https://swift.org/package-manager
32+
[CocoaPods]: https://cocoapods.org
33+
[Carthage]: https://github.com/Carthage/Carthage

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ In your `Package.swift`:
4545

4646
```swift
4747
package.dependencies.append(
48-
.package(url: "https://github.com/mxcl/PromiseKit", from: "7.0.0")
48+
.package(url: "https://github.com/mxcl/PromiseKit", from: "7.0.0-rc1")
4949
)
5050
```
5151

0 commit comments

Comments
 (0)