Skip to content

Commit

Permalink
Bump version to 5.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
onevcat committed Nov 16, 2019
1 parent 6a36b17 commit e951bc2
Show file tree
Hide file tree
Showing 222 changed files with 7,044 additions and 2,088 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@

-----

## [5.10.0 - Rex Rabbit](https://github.com/onevcat/Kingfisher/releases/tag/5.10.0) (2019-11-17)

#### Add
* An `.alternativeSources` option to provide a list of alternative image loading `Source`s. These `Source`s act as a fallback when the original `Source` downloading fails where Kingfisher will try to load images from. [#1343](https://github.com/onevcat/Kingfisher/pull/1343)

#### Fix
* The `.waitForCache` option now also waits for caching for original image if the `.cacheOriginalImage` is also set. [#1344](https://github.com/onevcat/Kingfisher/pull/1344)
* Now the `retrieveImage` methods in `ImageCache` calls its `callbackQueue` is `.mainCurrentOrAsync` by default instead of `.untouch`. It aligns the behavior of other parts in the framework. [#1338](https://github.com/onevcat/Kingfisher/pull/1338)
* An issue that causes customize indicator not being placed with correct size. [#1345](https://github.com/onevcat/Kingfisher/pull/1345)
* Performance improvement for loading progressive images. [#1332](https://github.com/onevcat/Kingfisher/pull/1332)

---

## [5.9.0 - Combination](https://github.com/onevcat/Kingfisher/releases/tag/5.9.0) (2019-10-24)

#### Add
Expand Down
2 changes: 1 addition & 1 deletion Kingfisher.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "Kingfisher"
s.version = "5.9.0"
s.version = "5.10.0"
s.summary = "A lightweight and pure Swift implemented library for downloading and cacheing image from the web."

s.description = <<-DESC
Expand Down
16 changes: 8 additions & 8 deletions Kingfisher.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1052,9 +1052,9 @@
CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION = YES;
CLANG_WARN_UNREACHABLE_CODE = YES_AGGRESSIVE;
CLANG_WARN__EXIT_TIME_DESTRUCTORS = YES;
CURRENT_PROJECT_VERSION = 1832;
CURRENT_PROJECT_VERSION = 1885;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1832;
DYLIB_CURRENT_VERSION = 1885;
DYLIB_INSTALL_NAME_BASE = "@rpath";
GCC_TREAT_IMPLICIT_FUNCTION_DECLARATIONS_AS_ERRORS = YES;
GCC_TREAT_INCOMPATIBLE_POINTER_TYPE_WARNINGS_AS_ERRORS = YES;
Expand Down Expand Up @@ -1102,9 +1102,9 @@
CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION = YES;
CLANG_WARN_UNREACHABLE_CODE = YES_AGGRESSIVE;
CLANG_WARN__EXIT_TIME_DESTRUCTORS = YES;
CURRENT_PROJECT_VERSION = 1832;
CURRENT_PROJECT_VERSION = 1885;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1832;
DYLIB_CURRENT_VERSION = 1885;
DYLIB_INSTALL_NAME_BASE = "@rpath";
GCC_TREAT_IMPLICIT_FUNCTION_DECLARATIONS_AS_ERRORS = YES;
GCC_TREAT_INCOMPATIBLE_POINTER_TYPE_WARNINGS_AS_ERRORS = YES;
Expand Down Expand Up @@ -1187,9 +1187,9 @@
CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION = YES;
CLANG_WARN_UNREACHABLE_CODE = YES_AGGRESSIVE;
CLANG_WARN__EXIT_TIME_DESTRUCTORS = YES;
CURRENT_PROJECT_VERSION = 1832;
CURRENT_PROJECT_VERSION = 1885;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1832;
DYLIB_CURRENT_VERSION = 1885;
DYLIB_INSTALL_NAME_BASE = "@rpath";
GCC_TREAT_IMPLICIT_FUNCTION_DECLARATIONS_AS_ERRORS = YES;
GCC_TREAT_INCOMPATIBLE_POINTER_TYPE_WARNINGS_AS_ERRORS = YES;
Expand Down Expand Up @@ -1242,9 +1242,9 @@
CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION = YES;
CLANG_WARN_UNREACHABLE_CODE = YES_AGGRESSIVE;
CLANG_WARN__EXIT_TIME_DESTRUCTORS = YES;
CURRENT_PROJECT_VERSION = 1832;
CURRENT_PROJECT_VERSION = 1885;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1832;
DYLIB_CURRENT_VERSION = 1885;
DYLIB_INSTALL_NAME_BASE = "@rpath";
GCC_TREAT_IMPLICIT_FUNCTION_DECLARATIONS_AS_ERRORS = YES;
GCC_TREAT_INCOMPATIBLE_POINTER_TYPE_WARNINGS_AS_ERRORS = YES;
Expand Down
4 changes: 2 additions & 2 deletions Sources/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>5.9.0</string>
<string>5.10.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1832</string>
<string>1885</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
Expand Down
4 changes: 2 additions & 2 deletions Tests/KingfisherTests/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>5.9.0</string>
<string>5.10.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1832</string>
<string>1885</string>
</dict>
</plist>
29 changes: 19 additions & 10 deletions docs/Classes.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
<header class="header">
<p class="header-col header-col--primary">
<a class="header-link" href="index.html">
Kingfisher 5.9.0 Docs
Kingfisher 5.10.0 Docs
</a>
(84% documented)
(83% documented)
</p>

<p class="header-col--secondary">
Expand Down Expand Up @@ -138,6 +138,9 @@
<li class="nav-group-task">
<a class="nav-group-task-link" href="Enums/ImageTransition.html">ImageTransition</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="Enums/IndicatorSizeStrategy.html">IndicatorSizeStrategy</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="Enums/IndicatorType.html">IndicatorType</a>
</li>
Expand Down Expand Up @@ -365,6 +368,9 @@
<li class="nav-group-task">
<a class="nav-group-task-link" href="Structs/OverlayImageProcessor.html">OverlayImageProcessor</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="Structs/PropagationError.html">PropagationError</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="Structs/RawImageDataProvider.html">RawImageDataProvider</a>
</li>
Expand Down Expand Up @@ -406,6 +412,9 @@
<li class="nav-group-task">
<a class="nav-group-task-link" href="Typealiases.html#/s:10Kingfisher21DownloadProgressBlocka">DownloadProgressBlock</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="Typealiases.html#/s:10Kingfisher24DownloadTaskUpdatedBlocka">DownloadTaskUpdatedBlock</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="Typealiases.html#/s:10Kingfisher5Imagea">Image</a>
</li>
Expand Down Expand Up @@ -525,7 +534,7 @@ <h4>Declaration</h4>
</div>
</div>
<div class="slightly-smaller">
<a href="https://github.com/onevcat/Kingfisher/tree/5.9.0/Sources/Cache/ImageCache.swift#L142-L784">Show on GitHub</a>
<a href="https://github.com/onevcat/Kingfisher/tree/5.10.0/Sources/Cache/ImageCache.swift#L142-L784">Show on GitHub</a>
</div>
</section>
</div>
Expand Down Expand Up @@ -567,7 +576,7 @@ <h4>Declaration</h4>
</div>
</div>
<div class="slightly-smaller">
<a href="https://github.com/onevcat/Kingfisher/tree/5.9.0/Sources/General/Deprecated.swift#L136-L137">Show on GitHub</a>
<a href="https://github.com/onevcat/Kingfisher/tree/5.10.0/Sources/General/Deprecated.swift#L136-L137">Show on GitHub</a>
</div>
</section>
</div>
Expand Down Expand Up @@ -604,7 +613,7 @@ <h4>Declaration</h4>
</div>
</div>
<div class="slightly-smaller">
<a href="https://github.com/onevcat/Kingfisher/tree/5.9.0/Sources/General/KingfisherManager.swift#L53-L433">Show on GitHub</a>
<a href="https://github.com/onevcat/Kingfisher/tree/5.10.0/Sources/General/KingfisherManager.swift#L75-L576">Show on GitHub</a>
</div>
</section>
</div>
Expand Down Expand Up @@ -639,7 +648,7 @@ <h4>Declaration</h4>
</div>
</div>
<div class="slightly-smaller">
<a href="https://github.com/onevcat/Kingfisher/tree/5.9.0/Sources/Networking/ImageDownloader.swift#L99-L349">Show on GitHub</a>
<a href="https://github.com/onevcat/Kingfisher/tree/5.10.0/Sources/Networking/ImageDownloader.swift#L99-L349">Show on GitHub</a>
</div>
</section>
</div>
Expand Down Expand Up @@ -677,7 +686,7 @@ <h4>Declaration</h4>
</div>
</div>
<div class="slightly-smaller">
<a href="https://github.com/onevcat/Kingfisher/tree/5.9.0/Sources/Networking/ImagePrefetcher.swift#L72-L368">Show on GitHub</a>
<a href="https://github.com/onevcat/Kingfisher/tree/5.10.0/Sources/Networking/ImagePrefetcher.swift#L72-L372">Show on GitHub</a>
</div>
</section>
</div>
Expand Down Expand Up @@ -713,7 +722,7 @@ <h4>Declaration</h4>
</div>
</div>
<div class="slightly-smaller">
<a href="https://github.com/onevcat/Kingfisher/tree/5.9.0/Sources/Networking/SessionDataTask.swift#L31-L119">Show on GitHub</a>
<a href="https://github.com/onevcat/Kingfisher/tree/5.10.0/Sources/Networking/SessionDataTask.swift#L31-L119">Show on GitHub</a>
</div>
</section>
</div>
Expand Down Expand Up @@ -757,8 +766,8 @@ <h4>Declaration</h4>
</article>
</div>
<section class="footer">
<p>&copy; 2019 <a class="link" href="https://onevcat.com" target="_blank" rel="external">Wei Wang</a>. All rights reserved. (Last updated: 2019-10-24)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.11.2</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
<p>&copy; 2019 <a class="link" href="https://onevcat.com" target="_blank" rel="external">Wei Wang</a>. All rights reserved. (Last updated: 2019-11-17)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.12.0</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</body>
</div>
Expand Down
17 changes: 13 additions & 4 deletions docs/Classes/AnimatedImageView.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
<header class="header">
<p class="header-col header-col--primary">
<a class="header-link" href="../index.html">
Kingfisher 5.9.0 Docs
Kingfisher 5.10.0 Docs
</a>
(84% documented)
(83% documented)
</p>

<p class="header-col--secondary">
Expand Down Expand Up @@ -138,6 +138,9 @@
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Enums/ImageTransition.html">ImageTransition</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Enums/IndicatorSizeStrategy.html">IndicatorSizeStrategy</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Enums/IndicatorType.html">IndicatorType</a>
</li>
Expand Down Expand Up @@ -365,6 +368,9 @@
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Structs/OverlayImageProcessor.html">OverlayImageProcessor</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Structs/PropagationError.html">PropagationError</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Structs/RawImageDataProvider.html">RawImageDataProvider</a>
</li>
Expand Down Expand Up @@ -406,6 +412,9 @@
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Typealiases.html#/s:10Kingfisher21DownloadProgressBlocka">DownloadProgressBlock</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Typealiases.html#/s:10Kingfisher24DownloadTaskUpdatedBlocka">DownloadTaskUpdatedBlock</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Typealiases.html#/s:10Kingfisher5Imagea">Image</a>
</li>
Expand Down Expand Up @@ -818,8 +827,8 @@ <h3 class="section-name">Override</h3>
</article>
</div>
<section class="footer">
<p>&copy; 2019 <a class="link" href="https://onevcat.com" target="_blank" rel="external">Wei Wang</a>. All rights reserved. (Last updated: 2019-10-24)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.11.2</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
<p>&copy; 2019 <a class="link" href="https://onevcat.com" target="_blank" rel="external">Wei Wang</a>. All rights reserved. (Last updated: 2019-11-17)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.12.0</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</body>
</div>
Expand Down
17 changes: 13 additions & 4 deletions docs/Classes/AnimatedImageView/RepeatCount.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
<header class="header">
<p class="header-col header-col--primary">
<a class="header-link" href="../../index.html">
Kingfisher 5.9.0 Docs
Kingfisher 5.10.0 Docs
</a>
(84% documented)
(83% documented)
</p>

<p class="header-col--secondary">
Expand Down Expand Up @@ -138,6 +138,9 @@
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Enums/ImageTransition.html">ImageTransition</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Enums/IndicatorSizeStrategy.html">IndicatorSizeStrategy</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Enums/IndicatorType.html">IndicatorType</a>
</li>
Expand Down Expand Up @@ -365,6 +368,9 @@
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Structs/OverlayImageProcessor.html">OverlayImageProcessor</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Structs/PropagationError.html">PropagationError</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Structs/RawImageDataProvider.html">RawImageDataProvider</a>
</li>
Expand Down Expand Up @@ -406,6 +412,9 @@
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Typealiases.html#/s:10Kingfisher21DownloadProgressBlocka">DownloadProgressBlock</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Typealiases.html#/s:10Kingfisher24DownloadTaskUpdatedBlocka">DownloadTaskUpdatedBlock</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Typealiases.html#/s:10Kingfisher5Imagea">Image</a>
</li>
Expand Down Expand Up @@ -573,8 +582,8 @@ <h1>RepeatCount</h1>
</article>
</div>
<section class="footer">
<p>&copy; 2019 <a class="link" href="https://onevcat.com" target="_blank" rel="external">Wei Wang</a>. All rights reserved. (Last updated: 2019-10-24)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.11.2</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
<p>&copy; 2019 <a class="link" href="https://onevcat.com" target="_blank" rel="external">Wei Wang</a>. All rights reserved. (Last updated: 2019-11-17)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.12.0</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</body>
</div>
Expand Down
Loading

0 comments on commit e951bc2

Please sign in to comment.