Skip to content

Commit dd3c422

Browse files
committed
Bump version to 8.6.0
1 parent 5db037e commit dd3c422

File tree

5 files changed

+23
-9
lines changed

5 files changed

+23
-9
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33
-----
44

5+
## [8.6.0 - Retryfisher](https://github.com/onevcat/Kingfisher/releases/tag/8.6.0) (2025-10-05)
6+
7+
#### Add
8+
* Add network retry strategy with configurable retry logic for failed downloads. [#2439](https://github.com/onevcat/Kingfisher/pull/2439) @komkovla
9+
* Add network metrics collection for download tasks with download speed measurement and timestamp handling. [#2416](https://github.com/onevcat/Kingfisher/pull/2416) @darkbrewx
10+
11+
#### Fix
12+
* Fix crash on setting indicator on macOS 26 by changing default indicator style. [#2442](https://github.com/onevcat/Kingfisher/pull/2442) @onevcat
13+
* Fix retain cycle in ImageDownloader when transferring network metrics. [#2419](https://github.com/onevcat/Kingfisher/pull/2419) @darkbrewx
14+
* Upgrade to the latest Xcode recommended settings for improved build configuration. [#2417](https://github.com/onevcat/Kingfisher/pull/2417) @onevcat
15+
* Update CI script to make it work with Xcode 26. [#2442](https://github.com/onevcat/Kingfisher/pull/2442) @onevcat
16+
17+
---
18+
519
## [8.5.0 - Transition Dancer](https://github.com/onevcat/Kingfisher/releases/tag/8.5.0) (2025-07-15)
620

721
#### Add

Kingfisher.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22

33
s.name = "Kingfisher"
4-
s.version = "8.5.0"
4+
s.version = "8.6.0"
55
s.summary = "A lightweight and pure Swift implemented library for downloading and cacheing image from the web."
66

77
s.description = <<-DESC

Kingfisher.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1116,11 +1116,11 @@
11161116
CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION = YES;
11171117
CLANG_WARN_UNREACHABLE_CODE = YES_AGGRESSIVE;
11181118
CLANG_WARN__EXIT_TIME_DESTRUCTORS = YES;
1119-
CURRENT_PROJECT_VERSION = 3142;
1119+
CURRENT_PROJECT_VERSION = 3165;
11201120
DEAD_CODE_STRIPPING = YES;
11211121
DEFINES_MODULE = YES;
11221122
DYLIB_COMPATIBILITY_VERSION = 1;
1123-
DYLIB_CURRENT_VERSION = 3142;
1123+
DYLIB_CURRENT_VERSION = 3165;
11241124
DYLIB_INSTALL_NAME_BASE = "@rpath";
11251125
ENABLE_MODULE_VERIFIER = YES;
11261126
GCC_TREAT_IMPLICIT_FUNCTION_DECLARATIONS_AS_ERRORS = YES;
@@ -1180,11 +1180,11 @@
11801180
CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION = YES;
11811181
CLANG_WARN_UNREACHABLE_CODE = YES_AGGRESSIVE;
11821182
CLANG_WARN__EXIT_TIME_DESTRUCTORS = YES;
1183-
CURRENT_PROJECT_VERSION = 3142;
1183+
CURRENT_PROJECT_VERSION = 3165;
11841184
DEAD_CODE_STRIPPING = YES;
11851185
DEFINES_MODULE = YES;
11861186
DYLIB_COMPATIBILITY_VERSION = 1;
1187-
DYLIB_CURRENT_VERSION = 3142;
1187+
DYLIB_CURRENT_VERSION = 3165;
11881188
DYLIB_INSTALL_NAME_BASE = "@rpath";
11891189
ENABLE_MODULE_VERIFIER = YES;
11901190
GCC_TREAT_IMPLICIT_FUNCTION_DECLARATIONS_AS_ERRORS = YES;

Sources/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>8.5.0</string>
18+
<string>8.6.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>3142</string>
22+
<string>3165</string>
2323
<key>NSPrincipalClass</key>
2424
<string></string>
2525
</dict>

Tests/KingfisherTests/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
<key>CFBundlePackageType</key>
1616
<string>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>8.5.0</string>
18+
<string>8.6.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>3142</string>
22+
<string>3165</string>
2323
</dict>
2424
</plist>

0 commit comments

Comments
 (0)