parent
eb0eafa520
commit
e45f290a77
13
CHANGELOG.md
13
CHANGELOG.md
|
@ -6,6 +6,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
|
||||
## [3.0.0-beta.2] - 2023-10-21
|
||||
|
||||
### Changed
|
||||
- Update the WebImage API to match SwiftUI.AsyncImage #275 @Kyle-Ye
|
||||
- Allows to use UIImage/NSImage as defaults when init the AnimatedImage with JPEG data #277
|
||||
|
||||
### Removed
|
||||
- `WebImage.placeholder<T>(@ViewBuilder content: () -> T) -> WebImage`
|
||||
- `WebImage.placeholder(_ image: Image) -> WebImage`
|
||||
- `AnimatedImage.placeholder<T>(@ViewBuilder content: () -> T) -> AnimatedImage`
|
||||
- `AnimatedImage.placeholder(_ image: PlatformImage) -> AnimatedImage`
|
||||
|
||||
## [3.0.0-beta] - 2023-09-02
|
||||
|
||||
### Added
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
Pod::Spec.new do |s|
|
||||
s.name = 'SDWebImageSwiftUI'
|
||||
s.version = '3.0.0-beta'
|
||||
s.version = '3.0.0-beta.2'
|
||||
s.summary = 'SwiftUI Image loading and Animation framework powered by SDWebImage'
|
||||
|
||||
s.description = <<-DESC
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
<key>CFBundlePackageType</key>
|
||||
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>3.0.0-beta</string>
|
||||
<string>3.0.0-beta.2</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>$(CURRENT_PROJECT_VERSION)</string>
|
||||
</dict>
|
||||
|
|
Loading…
Reference in New Issue