parent
3258812caa
commit
83d46c08b5
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]
|
||||
|
||||
## [2.1.0] - 2022-09-15
|
||||
|
||||
### Fixed
|
||||
|
||||
- Refactor WebImage/AnimatedImage using SwiftUIBackports and StateObject #227
|
||||
- Fix iOS 16 undefined behavior warnings because of Publishing changes from within view updates.
|
||||
- Fix iOS 14+ WebImage behavior using `@StateObject` (and backport on iOS 13)
|
||||
|
||||
### Changed
|
||||
|
||||
- The `IndicatorReportable` is misused and removed. Use `IndicatorStatus` instead.
|
||||
- Deprecate iOS 13 support, this may be the last version to support iOS 13.
|
||||
|
||||
## [2.0.2] - 2021-03-10
|
||||
|
||||
### Fixed
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
Pod::Spec.new do |s|
|
||||
s.name = 'SDWebImageSwiftUI'
|
||||
s.version = '2.0.2'
|
||||
s.version = '2.1.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.0.2</string>
|
||||
<string>2.1.0</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>$(CURRENT_PROJECT_VERSION)</string>
|
||||
</dict>
|
||||
|
|
Loading…
Reference in New Issue