From d57998e7bacb8e765f848a4ec30385e68a5c3878 Mon Sep 17 00:00:00 2001 From: MarcoDotIO Date: Fri, 16 Dec 2022 15:35:18 -0500 Subject: [PATCH] Fix SPM installation process for readme.MD --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e45877d..7ed3129 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ The [Swift Package Manager](https://swift.org/package-manager/) allows for devel * File > Swift Packages > Add Package Dependency * Add `https://github.com/marcodotio/OpenAIKit.git` -* Select "Up to next Major" with "1.1.1" +* Select "Up to next Major" with "1.1.2" #### SPM Through Xcode Package @@ -61,7 +61,7 @@ Once you have your Swift package set up, add the Git link within the `dependenci ```swift dependencies: [ - .package(url: "https://github.com/marcodotio/OpenAIKit.git", .upToNextMajor(from: "1.1.1")) + .package(url: "https://github.com/marcodotio/OpenAIKit.git", .upToNextMajor(from: "1.1.2")) ] ```