Skip to content

Commit b450a3b

Browse files
committed
Bump version to 8.3.0
1 parent 2411570 commit b450a3b

File tree

5 files changed

+21
-9
lines changed

5 files changed

+21
-9
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

33
-----
44

5+
## [8.3.0 - Progressive Loading Improvement](https://github.com/onevcat/Kingfisher/releases/tag/8.3.0) (2025-03-04)
6+
7+
#### Add
8+
* The progressive JPEG loading option is now available for SwiftUI too. You can load a progressive JPEG image with the `progressiveJPEG` modifier in `KFImage`. @onevcat @nikolaydubina @mantoljak [#2366](https://github.com/onevcat/Kingfisher/pull/2366)
9+
10+
#### Fix
11+
* Solves a memory leak when using progressive JPEG loading. @onevcat @james-app @Adobels [#2368](https://github.com/onevcat/Kingfisher/pull/2368)
12+
* The filename and the content structure of the prebuilt xcframework zip in the Assets section of the release page have been updated. If your script depends on this file, you may need to adjust it accordingly. See more in [#2361](https://github.com/onevcat/Kingfisher/pull/2361) @olejnjak
13+
* A wrong `imageNotExisting` was used in KingfisherManager. Now the correct low level error is propagated to caller side. @onevcat @iAllenC @kuzomenskyi [#2336](https://github.com/onevcat/Kingfisher/pull/2336)]
14+
15+
---
16+
517
## [8.2.0 - Snake Year](https://github.com/onevcat/Kingfisher/releases/tag/8.2.0) (2025-02-05)
618

719
#### Add

Kingfisher.podspec

+1-1
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.2.0"
4+
s.version = "8.3.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

+4-4
Original file line numberDiff line numberDiff line change
@@ -1108,11 +1108,11 @@
11081108
CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION = YES;
11091109
CLANG_WARN_UNREACHABLE_CODE = YES_AGGRESSIVE;
11101110
CLANG_WARN__EXIT_TIME_DESTRUCTORS = YES;
1111-
CURRENT_PROJECT_VERSION = 3071;
1111+
CURRENT_PROJECT_VERSION = 3082;
11121112
DEAD_CODE_STRIPPING = YES;
11131113
DEFINES_MODULE = YES;
11141114
DYLIB_COMPATIBILITY_VERSION = 1;
1115-
DYLIB_CURRENT_VERSION = 3071;
1115+
DYLIB_CURRENT_VERSION = 3082;
11161116
DYLIB_INSTALL_NAME_BASE = "@rpath";
11171117
ENABLE_MODULE_VERIFIER = YES;
11181118
GCC_TREAT_IMPLICIT_FUNCTION_DECLARATIONS_AS_ERRORS = YES;
@@ -1172,11 +1172,11 @@
11721172
CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION = YES;
11731173
CLANG_WARN_UNREACHABLE_CODE = YES_AGGRESSIVE;
11741174
CLANG_WARN__EXIT_TIME_DESTRUCTORS = YES;
1175-
CURRENT_PROJECT_VERSION = 3071;
1175+
CURRENT_PROJECT_VERSION = 3082;
11761176
DEAD_CODE_STRIPPING = YES;
11771177
DEFINES_MODULE = YES;
11781178
DYLIB_COMPATIBILITY_VERSION = 1;
1179-
DYLIB_CURRENT_VERSION = 3071;
1179+
DYLIB_CURRENT_VERSION = 3082;
11801180
DYLIB_INSTALL_NAME_BASE = "@rpath";
11811181
ENABLE_MODULE_VERIFIER = YES;
11821182
GCC_TREAT_IMPLICIT_FUNCTION_DECLARATIONS_AS_ERRORS = YES;

Sources/Info.plist

+2-2
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.2.0</string>
18+
<string>8.3.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>3071</string>
22+
<string>3082</string>
2323
<key>NSPrincipalClass</key>
2424
<string></string>
2525
</dict>

Tests/KingfisherTests/Info.plist

+2-2
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.2.0</string>
18+
<string>8.3.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>3071</string>
22+
<string>3082</string>
2323
</dict>
2424
</plist>

0 commit comments

Comments
 (0)