parent
9a82da2a1c
commit
2221b4fde4
11
CHANGELOG.md
11
CHANGELOG.md
|
@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [2.2.0] - 2022-09-22
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fix iOS 13 compatibility #232
|
||||
- Fix WebImage/Animated using @State to publish changes
|
||||
- Al v2.1.0 users are recommend to update
|
||||
|
||||
### Changed
|
||||
- ImageManager API changes. The init method has no args, use `load(url:options:context:)` instead
|
||||
|
||||
## [2.1.0] - 2022-09-15
|
||||
|
||||
### Fixed
|
||||
|
|
|
@ -76,7 +76,7 @@ var body: some View {
|
|||
|
||||
Note: However, many differences behavior between iOS 13/14's is hard to fixup. And we may break some APIs (which are not designed to be public) to fixup it.
|
||||
|
||||
Due to maintain issue, in the future release, we will drop the iOS 13 supports and always match SwiftUI 2.0's behavior. And **v2.1** may be the last version support iOS 13.
|
||||
Due to maintain issue, in the future release, we will drop the iOS 13 supports and always match SwiftUI 2.0's behavior. And **v2.x** may be the last version support iOS 13.
|
||||
|
||||
|
||||
## Installation
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
Pod::Spec.new do |s|
|
||||
s.name = 'SDWebImageSwiftUI'
|
||||
s.version = '2.1.0'
|
||||
s.version = '2.2.0'
|
||||
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>2.1.0</string>
|
||||
<string>2.2.0</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>$(CURRENT_PROJECT_VERSION)</string>
|
||||
</dict>
|
||||
|
|
Loading…
Reference in New Issue