parent
8adfe3faeb
commit
124509e9b6
17
CHANGELOG.md
17
CHANGELOG.md
|
@ -1,3 +1,20 @@
|
|||
## [5.0 Patch, on May 16th, 2019](https://github.com/rs/SDWebImage/releases/tag/5.0.3)
|
||||
See [all tickets marked for the 5.0.3 release](https://github.com/SDWebImage/SDWebImage/milestone/39)
|
||||
|
||||
#### Fixes
|
||||
- Fix SDWebImageDecodeFirstFrameOnly flag is ignored when image loaded from cache #2725
|
||||
- Fix that SDAnimatedImageView initWithImage will skip the initialize logic and crash #2728
|
||||
- Replace if judge with MAX() function in scale less than 1 #2710
|
||||
|
||||
#### Project
|
||||
- Replace the private prefix header files with the manually import for each implementation files #2723
|
||||
|
||||
#### Tests
|
||||
- Added many test case to ensure the code behavior and coverage #2711
|
||||
|
||||
#### Documentation
|
||||
- Update the documentation coverage for jazzy. Use the correct format to provide class/protocol/type API Documentation #2722
|
||||
|
||||
## [5.0 Patch, on Apr 25th, 2019](https://github.com/rs/SDWebImage/releases/tag/5.0.2)
|
||||
See [all tickets marked for the 5.0.2 release](https://github.com/SDWebImage/SDWebImage/milestone/37)
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Pod::Spec.new do |s|
|
||||
s.name = 'SDWebImage'
|
||||
s.version = '5.0.2'
|
||||
s.version = '5.0.3'
|
||||
|
||||
s.osx.deployment_target = '10.10'
|
||||
s.ios.deployment_target = '8.0'
|
||||
|
|
|
@ -15,11 +15,11 @@
|
|||
<key>CFBundlePackageType</key>
|
||||
<string>FMWK</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>5.0.2</string>
|
||||
<string>5.0.3</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>5.0.2</string>
|
||||
<string>5.0.3</string>
|
||||
<key>NSPrincipalClass</key>
|
||||
<string></string>
|
||||
</dict>
|
||||
|
|
Loading…
Reference in New Issue