From e09746ec5e6d4b1083863c5f4e75aff35836e415 Mon Sep 17 00:00:00 2001 From: Roman Podymov Date: Fri, 24 Mar 2023 15:08:00 +0100 Subject: [PATCH 1/2] Update README.markdown --- README.markdown | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/README.markdown b/README.markdown index 49df0de..46a2739 100644 --- a/README.markdown +++ b/README.markdown @@ -5,7 +5,7 @@ This project adds promises to Apple’s CoreLocation framework. ## CocoaPods ```ruby -pod "PromiseKit/CoreLocation", "~> 6.0" +pod "PromiseKit/CoreLocation", "~> 3.1.2" ``` The extensions are built into `PromiseKit.framework` thus nothing else is needed. @@ -13,7 +13,15 @@ The extensions are built into `PromiseKit.framework` thus nothing else is needed ## Carthage ```ruby -github "PromiseKit/CoreLocation" ~> 3.0 +github "PromiseKit/CoreLocation" ~> 3.1.2 +``` + +## Swift Package Manager + +```ruby +dependencies: [ + .package(url: "https://github.com/PromiseKit/CoreLocation.git", .upToNextMajor(from: "3.1.2")) +] ``` The extensions are built into their own framework: From cac1cc3ab1c8e91867272df14ae2b818ae29b8f9 Mon Sep 17 00:00:00 2001 From: Roman Podymov Date: Thu, 27 Apr 2023 06:30:51 +0200 Subject: [PATCH 2/2] Update README.markdown --- README.markdown | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.markdown b/README.markdown index 46a2739..56724bf 100644 --- a/README.markdown +++ b/README.markdown @@ -5,20 +5,20 @@ This project adds promises to Apple’s CoreLocation framework. ## CocoaPods ```ruby -pod "PromiseKit/CoreLocation", "~> 3.1.2" +pod "PromiseKit/CoreLocation", "~> 6.0" ``` The extensions are built into `PromiseKit.framework` thus nothing else is needed. ## Carthage -```ruby +```ogdl github "PromiseKit/CoreLocation" ~> 3.1.2 ``` ## Swift Package Manager -```ruby +```swift dependencies: [ .package(url: "https://github.com/PromiseKit/CoreLocation.git", .upToNextMajor(from: "3.1.2")) ]