Skip to content

Commit a3f30ba

Browse files
committed
Bump version to 0.10.0
Update readme
1 parent 226759e commit a3f30ba

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ SDWebImageSwiftUI is available through [Swift Package Manager](https://swift.org
7272
```swift
7373
let package = Package(
7474
dependencies: [
75-
.package(url: "https://github.com/SDWebImage/SDWebImageSwiftUI.git", from: "0.9")
75+
.package(url: "https://github.com/SDWebImage/SDWebImageSwiftUI.git", from: "0.10")
7676
],
7777
)
7878
```
@@ -251,21 +251,21 @@ NavigationView {
251251
}
252252
```
253253

254-
#### Use for backward deployment and weak linking SwiftUI
254+
#### Using for backward deployment and weak linking SwiftUI
255255

256-
SDWebImageSwiftUI supports to use when your App Target has a deployment target version less than iOS 13/macOS 10.15/tvOS 13/watchOS 6. Which will weak linking of SwiftUI(Combine) to allows writing code with available check at runtime.
256+
SDWebImageSwiftUI from v0.10.0, supports to use when your App Target has a deployment target version less than iOS 13/macOS 10.15/tvOS 13/watchOS 6. Which will weak linking of SwiftUI(Combine) to allows writing code with available check at runtime.
257257

258258
To use backward deployment, you have to do the follow things:
259259

260260
+ Add `-weak_framework SwiftUI -weak_framework Combine` in your App Target's `Other Linker Flags` build setting
261261

262-
You should notice that all the third party SwiftUI framework should have this build setting as well, not only just ourself (we already added). Or when running on iOS 12 device, it will trigger the runtime dyld error on startup.
262+
You should notice that all the third party SwiftUI frameworks should have this build setting as well, not only just SDWebImageSwiftUI (we already added in v0.10.0). Or when running on iOS 12 device, it will trigger the runtime dyld error on startup.
263263

264264
+ Use CocoaPods or Carthage (SwiftPM does not support weak linking nor backward deployment currently)
265265

266266
For Carthage user, the built binary framework will use [Library Evolution](https://swift.org/blog/abi-stability-and-more/) to support for backward deployment.
267267

268-
For CocoaPods user, you should skip the platform validation in Podfile with
268+
For CocoaPods user, you can skip the platform version validation in Podfile with:
269269

270270
```ruby
271271
platform :ios, '13.0' # This does not effect your App Target's deployment target version, just a hint for CocoaPods

SDWebImageSwiftUI.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Pod::Spec.new do |s|
1010
s.name = 'SDWebImageSwiftUI'
11-
s.version = '0.9.0'
11+
s.version = '0.10.0'
1212
s.summary = 'SwiftUI Image loading and Animation framework powered by SDWebImage'
1313

1414
s.description = <<-DESC

SDWebImageSwiftUI/Module/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>0.9.0</string>
18+
<string>0.10.0</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
</dict>

0 commit comments

Comments
 (0)