Skip to content

Commit a37f209

Browse files
committed
Bump version to 0.1.1, support Xcode 11.0
1 parent 058915b commit a37f209

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ It aims to ensure the following function available for users and try to do some
1717
+ SwiftUI compatibility
1818
+ Swift source code compatibility
1919

20-
Note we do not guarantee the public API stable for current status. Since Xcode 11 is not get released and SwiftUI is a new platform for us.
20+
Note we do not guarantee the public API stable for current status. Since SwiftUI is a new platform for us, we need to investigate the API design.
2121

2222
## Requirements
2323

@@ -66,7 +66,7 @@ It supports the placeholder and detail options control for image loading as SDWe
6666

6767
```swift
6868
var body: some View {
69-
WebImage(url: URL(string: "https://nokiatech.github.io/heif/content/images/ski_jump_1440x960.heic")!)
69+
WebImage(url: URL(string: "https://nokiatech.github.io/heif/content/images/ski_jump_1440x960.heic"))
7070
.scaledToFit()
7171
.frame(width: 300, height: 300, alignment: .center)
7272
}
@@ -76,7 +76,7 @@ var body: some View {
7676

7777
```swift
7878
var body: some View {
79-
AnimatedImage(url: URL(string: "https://raw.githubusercontent.com/liyong03/YLGIFImage/master/YLGIFImageDemo/YLGIFImageDemo/joy.gif")!)
79+
AnimatedImage(url: URL(string: "https://raw.githubusercontent.com/liyong03/YLGIFImage/master/YLGIFImageDemo/YLGIFImageDemo/joy.gif"))
8080
AnimatedImage(data: try! Data(contentsOf: URL(fileURLWithPath: "/tmp/foo.webp")))
8181
}
8282
```

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.1.0'
11+
s.version = '0.1.1'
1212
s.summary = 'Integration of SDWebImage Asynchronous image loading and SwiftUI framework'
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.1.0</string>
18+
<string>0.1.1</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
</dict>

0 commit comments

Comments
 (0)