Sfoglia il codice sorgente

Update SwiftPackageManager.md (#10747)

Remove stale steps from Swift Package Manager instructions
Paul Beusterien 3 anni fa
parent
commit
e750ecd88f
1 ha cambiato i file con 3 aggiunte e 10 eliminazioni
  1. 3 10
      SwiftPackageManager.md

+ 3 - 10
SwiftPackageManager.md

@@ -1,15 +1,8 @@
 # Swift Package Manager for Firebase
 
-## Introduction
-
-Starting with the 8.0.0 release, Firebase officially supports installation via [Swift
-Package Manager](https://swift.org/package-manager/).
-
-Prior to version 8.0.0 (starting with version 6.31.0) support was in Beta.
-
 ## Requirements
 
-- Requires Xcode 12.5 or above
+- Requires Xcode 13.3.1 or above
 - Analytics requires clients to add `-ObjC` linker option.
 - See [Package.swift](Package.swift) for supported platform versions.
 
@@ -35,7 +28,7 @@ Search for the Firebase Apple SDK using the repo's URL:
 https://github.com/firebase/firebase-ios-sdk.git
 ```
 
-Next, set the **Dependency Rule** to be `Up to Next Major Version` and specify `8.10.0` as the lower bound.
+Next, set the **Dependency Rule** to be `Up to Next Major Version`.
 
 Then, select **Add Package**.
 
@@ -80,7 +73,7 @@ dependencies: [
   .package(
     name: "Firebase",
     url: "https://github.com/firebase/firebase-ios-sdk.git",
-    .upToNextMajor(from: "8.10.0")
+    .upToNextMajor(from: "10.4.0")
   ),
 
   // Any other dependencies you have...