Skip to content

Commit 563e57e

Browse files
committed
Bumped version to 2.0.3
1 parent ab8c48e commit 563e57e

File tree

4 files changed

+18
-8
lines changed

4 files changed

+18
-8
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,16 @@
22

33
-----
44

5-
## [2.0.2](https://github.com/longitachi/ZLImageEditor/releases/tag/2.0.1) (2024-03-22)
5+
## [2.0.3](https://github.com/longitachi/ZLImageEditor/releases/tag/2.0.3) (2024-07-05)
6+
### Add:
7+
* Enhance the user experience of the image cropping interface and optimize the animation effects.
8+
9+
### Fix:
10+
* Fix the bug that causes a crash when entering the cropping interface while the app only supports landscape mode.
11+
12+
-----
13+
14+
## [2.0.2](https://github.com/longitachi/ZLImageEditor/releases/tag/2.0.2) (2024-03-22)
615
### Add:
716
* Adapt the text sticker input interface for iPad landscape mode.
817

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,11 @@ 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.3
57+
Add:
58+
Enhance the user experience of the image cropping interface and optimize the animation effects.
59+
Fix:
60+
Fix the bug that causes a crash when entering the cropping interface while the app only supports landscape mode.
5661
● 2.0.2
5762
Add:
5863
Adapt the text sticker input interface for iPad landscape mode.
@@ -61,10 +66,6 @@ ZLEditImageViewController.showEditImageVC(parentVC: self, image: image, editMode
6166
● 2.0.1
6267
Add:
6368
Adapt to iOS 17, replace UIGraphicsBeginImageContextWithOptions with UIGraphicsImageRenderer.
64-
● 2.0.0
65-
Add:
66-
Enhancing the drawing tool with an eraser function.
67-
The minimum supported system has been upgraded from iOS 9 to iOS 10.
6869
...
6970
```
7071

@@ -117,7 +118,7 @@ $ carthage update ZLImageEditor
117118

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

123124
### <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.2"
30+
let version = "2.0.3"
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.2'
3+
s.version = '2.0.3'
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)