Skip to content

Commit ff3a360

Browse files
committed
Update readme
1 parent ca98801 commit ff3a360

File tree

1 file changed

+18
-13
lines changed

1 file changed

+18
-13
lines changed

README.md

+18-13
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ struct ContentView: View {
156156

157157
- (UIKit/AppKit) iOS 13.0+ / macOS 10.15+ / tvOS 13.0+ / watchOS 6.0+ / visionOS 1.0+
158158
- (SwiftUI) iOS 14.0+ / macOS 11.0+ / tvOS 14.0+ / watchOS 7.0+ / visionOS 1.0+
159-
- Swift 5.0+
159+
- Swift 5.9+
160160

161161
### Kingfisher 7.0
162162

@@ -166,23 +166,28 @@ struct ContentView: View {
166166

167167
### Installation
168168

169-
A detailed guide for installation can be found in [Installation Guide](https://github.com/onevcat/Kingfisher/wiki/Installation-Guide).
169+
Refer to one of the following tutorials to install and use the framework:
170+
171+
- [UIKit Tutorial](https://swiftpackageindex.com/onevcat/kingfisher/master/tutorials/kingfisher/gettingstarteduikit)
172+
- [SwiftUI Tutorial](https://swiftpackageindex.com/onevcat/kingfisher/master/tutorials/kingfisher/gettingstartedswiftui)
173+
174+
Alternatively, you can follow either of the methods below.
170175

171176
#### Swift Package Manager
172177

173178
- File > Swift Packages > Add Package Dependency
174179
- Add `https://github.com/onevcat/Kingfisher.git`
175-
- Select "Up to Next Major" with "7.0.0"
180+
- Select "Up to Next Major" with "8.0.0"
176181

177182
#### CocoaPods
178183

179184
```ruby
180185
source 'https://github.com/CocoaPods/Specs.git'
181-
platform :ios, '12.0'
186+
platform :ios, '13.0'
182187
use_frameworks!
183188

184189
target 'MyApp' do
185-
pod 'Kingfisher', '~> 7.0'
190+
pod 'Kingfisher', '~> 8.0'
186191
end
187192
```
188193

@@ -192,14 +197,7 @@ end
192197
2. Drag the `Kingfisher.xcframework` into your project and add it to the target (usually the app target).
193198
3. Select your target, in the "General" Tab, find the "Frameworks, Libraries, and Embedded Content" section, set the `Embed Without Signing` to Kingfisher.
194199

195-
### Migrating
196-
197-
[Kingfisher 8.0 Migration](https://swiftpackageindex.com/onevcat/kingfisher/master/documentation/kingfisher/migration-to-8)
198-
[Kingfisher 7.0 Migration](https://github.com/onevcat/Kingfisher/wiki/Kingfisher-7.0-Migration-Guide)
199-
200-
If you are using an even earlier version, see the guides below to know the steps for migrating.
201-
202-
## Next Steps
200+
## Documentation
203201

204202
Check the documentation and tutorials:
205203

@@ -212,6 +210,13 @@ Check the documentation and tutorials:
212210
- [Common Tasks - Downloader](https://swiftpackageindex.com/onevcat/kingfisher/master/documentation/kingfisher/commontasks_downloader)
213211
- [Common tasks - Processor](https://swiftpackageindex.com/onevcat/kingfisher/master/documentation/kingfisher/commontasks_processor)
214212

213+
### Migrating
214+
215+
- [Kingfisher 8.0 Migration](https://swiftpackageindex.com/onevcat/kingfisher/master/documentation/kingfisher/migration-to-8)
216+
- [Kingfisher 7.0 Migration](https://github.com/onevcat/Kingfisher/wiki/Kingfisher-7.0-Migration-Guide)
217+
218+
If you are using an even earlier version, see the guides below to know the steps for migrating.
219+
215220
## Other
216221

217222
### Future of Kingfisher

0 commit comments

Comments
 (0)