From f1efeab848a96a035d4dcd17748760f82508bada Mon Sep 17 00:00:00 2001 From: Zach Date: Mon, 27 Nov 2023 17:58:39 -0700 Subject: [PATCH] Update README.md (#33) --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 522a81b..424eaff 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ To add `AppState` to your Swift project, use the Swift Package Manager. This inv ```swift dependencies: [ - .package(url: "https://github.com/0xLeif/AppState.git", from: "0.5.0") + .package(url: "https://github.com/0xLeif/AppState.git", from: "0.6.0") ] ``` @@ -238,7 +238,10 @@ Here's an example of how to use the `promote` function: ```swift class CustomApplication: Application, UIApplicationDelegate { - func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { + func application( + _ application: UIApplication, + didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? + ) -> Bool { // ... your custom setup code here ... return true }