Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ if flags.checkout.applePay { … }
Add the package in Xcode via **File → Add Package Dependencies**, or in `Package.swift`:

```swift
.package(url: "https://github.com/andyyhope/FeatureFlag.git", .upToNextMinor(from: "0.8.0"))
.package(url: "https://github.com/andyyhope/FeatureFlag.git", .upToNextMinor(from: "0.8.1"))
```

Pre-1.0, `from:` would accept every breaking `0.x` bump. While the API is still moving,
Expand Down
2 changes: 1 addition & 1 deletion Sources/FeatureFlag/FeatureFlag.docc/GettingStarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ app when you need someone else to change a value on a device you are not holding
In Xcode, **File → Add Package Dependencies**, or in `Package.swift`:

```swift
.package(url: "https://github.com/andyyhope/FeatureFlag.git", .upToNextMinor(from: "0.8.0"))
.package(url: "https://github.com/andyyhope/FeatureFlag.git", .upToNextMinor(from: "0.8.1"))
```

Add `FeatureFlag` to your app target. Add `FeatureFlagUI` **only** to a companion app —
Expand Down
Loading