└── README.md /README.md: -------------------------------------------------------------------------------- 1 | # Surge has been moved to its own organization on GitHub 2 | 3 | The Surge project is now located at [@Jounce/Surge](https://github.com/Jounce/Surge). 4 | 5 | ## Updating Your Dependencies 6 | 7 | For compatibility, 8 | an archived copy of Surge will be hosted at @mattt/Surge for some time. 9 | If your project uses Surge, 10 | please update your dependency to point to @Jounce/Surge. 11 | 12 | Specific instructions for Swift Package Manager, CocoaPods, and Carthage 13 | can be found below: 14 | 15 | ### Swift Package Manager 16 | 17 | In `Package.swift`, 18 | update the `url` value in your Surge `.package` declaration 19 | in your project dependencies: 20 | 21 | ```swift 22 | let package = Package( 23 | name: "myproject", 24 | dependencies: [ 25 | .package(url: "https://github.com/Jounce/Surge.git", .upToNextMajor(from: "2.0.0")), 26 | ], 27 | targets: [ 28 | .target( 29 | name: "myproject", 30 | dependencies: ["Surge"]), 31 | ] 32 | ) 33 | ``` 34 | 35 | ### CocoaPods 36 | 37 | **No changes are necessary.** 38 | You can continue to use the `Surge` pod without any problem. 39 | 40 | ```ruby 41 | pod 'Surge', '~> 2.0.0' 42 | ``` 43 | 44 | ### Carthage 45 | 46 | Update your Surge dependency declaration to the following: 47 | 48 | ```ruby 49 | github "Jounce/Surge" ~> 2.0.0 50 | ``` 51 | --------------------------------------------------------------------------------