diff --git a/CHANGELOG.md b/CHANGELOG.md
index 16dabb5..03b9ed1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,7 +2,16 @@
-----
-## [2.0.2](https://github.com/longitachi/ZLImageEditor/releases/tag/2.0.1) (2024-03-22)
+## [2.0.3](https://github.com/longitachi/ZLImageEditor/releases/tag/2.0.3) (2024-07-05)
+### Add:
+* Enhance the user experience of the image cropping interface and optimize the animation effects.
+
+### Fix:
+* Fix the bug that causes a crash when entering the cropping interface while the app only supports landscape mode.
+
+-----
+
+## [2.0.2](https://github.com/longitachi/ZLImageEditor/releases/tag/2.0.2) (2024-03-22)
### Add:
* Adapt the text sticker input interface for iPad landscape mode.
diff --git a/README.md b/README.md
index 6398e9b..34b24c3 100644
--- a/README.md
+++ b/README.md
@@ -53,6 +53,11 @@ ZLEditImageViewController.showEditImageVC(parentVC: self, image: image, editMode
### Change Log
> [More logs](https://github.com/longitachi/ZLImageEditor/blob/master/CHANGELOG.md)
```
+● 2.0.3
+ Add:
+ Enhance the user experience of the image cropping interface and optimize the animation effects.
+ Fix:
+ Fix the bug that causes a crash when entering the cropping interface while the app only supports landscape mode.
● 2.0.2
Add:
Adapt the text sticker input interface for iPad landscape mode.
@@ -61,10 +66,6 @@ ZLEditImageViewController.showEditImageVC(parentVC: self, image: image, editMode
● 2.0.1
Add:
Adapt to iOS 17, replace UIGraphicsBeginImageContextWithOptions with UIGraphicsImageRenderer.
-● 2.0.0
- Add:
- Enhancing the drawing tool with an eraser function.
- The minimum supported system has been upgraded from iOS 9 to iOS 10.
...
```
@@ -117,7 +118,7 @@ $ carthage update ZLImageEditor
#### Swift Package Manager
1. Select File > Swift Packages > Add Package Dependency. Enter https://github.com/longitachi/ZLImageEditor.git in the "Choose Package Repository" dialog.
-2. In the next page, specify the version resolving rule as "Up to Next Major" with "2.0.2" as its earliest version.
+2. In the next page, specify the version resolving rule as "Up to Next Major" with "2.0.3" as its earliest version.
3. After Xcode checking out the source and resolving the version, you can choose the "ZLImageEditor" library and add it to your app target.
### Support
diff --git a/Sources/General/ZLImageEditor.swift b/Sources/General/ZLImageEditor.swift
index 0ea5d40..a1a4a01 100644
--- a/Sources/General/ZLImageEditor.swift
+++ b/Sources/General/ZLImageEditor.swift
@@ -27,7 +27,7 @@
import Foundation
import UIKit
-let version = "2.0.2"
+let version = "2.0.3"
public struct ZLImageEditorWrapper {
public let base: Base
diff --git a/ZLImageEditor.podspec b/ZLImageEditor.podspec
index ec45a70..444cc0e 100644
--- a/ZLImageEditor.podspec
+++ b/ZLImageEditor.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'ZLImageEditor'
- s.version = '2.0.2'
+ s.version = '2.0.3'
s.summary = 'A powerful image editor framework. Supports graffiti, cropping, mosaic, text stickers, picture stickers, filters, adjust.'
s.homepage = 'https://github.com/longitachi/ZLImageEditor'