Skip to content

Commit c420a5b

Browse files
committed
Bumped version to 2.0.4
1 parent e5ede28 commit c420a5b

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

CHANGELOG.md

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

33
-----
44

5+
## [2.0.4](https://github.com/longitachi/ZLImageEditor/releases/tag/2.0.4) (2025-05-06)
6+
### Add:
7+
* Added a callback for cancelling editing.
8+
9+
-----
10+
511
## [2.0.3](https://github.com/longitachi/ZLImageEditor/releases/tag/2.0.3) (2024-07-05)
612
### Add:
713
* Enhance the user experience of the image cropping interface and optimize the animation effects.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@ ZLEditImageViewController.showEditImageVC(parentVC: self, image: image, editMode
5353
### <a id="ChangeLog"></a>Change Log
5454
> [More logs](https://github.com/longitachi/ZLImageEditor/blob/master/CHANGELOG.md)
5555
```
56+
● 2.0.4
57+
Add:
58+
Added a callback for cancelling editing.
5659
● 2.0.3
5760
Add:
5861
Enhance the user experience of the image cropping interface and optimize the animation effects.
@@ -63,9 +66,6 @@ ZLEditImageViewController.showEditImageVC(parentVC: self, image: image, editMode
6366
Adapt the text sticker input interface for iPad landscape mode.
6467
Fix:
6568
Fix the bug where cropping square images to circular shape fails.
66-
● 2.0.1
67-
Add:
68-
Adapt to iOS 17, replace UIGraphicsBeginImageContextWithOptions with UIGraphicsImageRenderer.
6969
...
7070
```
7171

@@ -118,7 +118,7 @@ $ carthage update ZLImageEditor
118118

119119
#### Swift Package Manager
120120
1. Select File > Swift Packages > Add Package Dependency. Enter https://github.com/longitachi/ZLImageEditor.git in the "Choose Package Repository" dialog.
121-
2. In the next page, specify the version resolving rule as "Up to Next Major" with "2.0.3" as its earliest version.
121+
2. In the next page, specify the version resolving rule as "Up to Next Major" with "2.0.4" as its earliest version.
122122
3. After Xcode checking out the source and resolving the version, you can choose the "ZLImageEditor" library and add it to your app target.
123123

124124
### <a id="Support"></a> Support

Sources/General/ZLImageEditor.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
import Foundation
2828
import UIKit
2929

30-
let version = "2.0.3"
30+
let version = "2.0.4"
3131

3232
public struct ZLImageEditorWrapper<Base> {
3333
public let base: Base

ZLImageEditor.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'ZLImageEditor'
3-
s.version = '2.0.3'
3+
s.version = '2.0.4'
44
s.summary = 'A powerful image editor framework. Supports graffiti, cropping, mosaic, text stickers, picture stickers, filters, adjust.'
55

66
s.homepage = 'https://github.com/longitachi/ZLImageEditor'

0 commit comments

Comments
 (0)