diff --git a/README.md b/README.md index 60b1ee3..58c7b19 100644 --- a/README.md +++ b/README.md @@ -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, diff --git a/Sources/FeatureFlag/FeatureFlag.docc/GettingStarted.md b/Sources/FeatureFlag/FeatureFlag.docc/GettingStarted.md index ac278dd..84961f3 100644 --- a/Sources/FeatureFlag/FeatureFlag.docc/GettingStarted.md +++ b/Sources/FeatureFlag/FeatureFlag.docc/GettingStarted.md @@ -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 —