diff --git a/.github/ISSUE_TEMPLATE.MD b/.github/ISSUE_TEMPLATE.MD
index 6d78c7d5..5fc6610c 100644
--- a/.github/ISSUE_TEMPLATE.MD
+++ b/.github/ISSUE_TEMPLATE.MD
@@ -5,7 +5,7 @@
Please fill in the detailed description of the issue (full output of any stack trace, compiler error, ...) and the steps to reproduce the issue.
#### Info
- ZLPhotoBrowser version: e.g. 4.3.3
+ ZLPhotoBrowser version: e.g. 4.3.4
Device: e.g. iPhone X
Device version: e.g. iOS 14.0
Xcode version: e.g. Xcode 12.0
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 15d4b19a..e187fa25 100755
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,13 @@
-----
+## [4.3.4](https://github.com/longitachi/ZLPhotoBrowser/releases/tag/4.3.4) (2022-06-27)
+
+## Fix:
+* Fix a bug of the image editor.
+
+---
+
## [4.3.3](https://github.com/longitachi/ZLPhotoBrowser/releases/tag/4.3.3) (2022-06-21)
### Add:
* Adjust loading progress hud style to make it prettier.
diff --git a/README.md b/README.md
index 295906d7..781dfa17 100644
--- a/README.md
+++ b/README.md
@@ -91,6 +91,9 @@ If you only want to use the image edit feature, please move to [ZLImageEditor](h
### Change Log
> [More logs](https://github.com/longitachi/ZLPhotoBrowser/blob/master/CHANGELOG.md)
```
+● 4.3.4
+ Fix:
+ Fix a bug of the image editor.
● 4.3.3
Add:
Adjust loading progress hud style to make it prettier.
@@ -102,12 +105,6 @@ If you only want to use the image edit feature, please move to [ZLImageEditor](h
Format code style.
Fix:
Fix some bugs when iOS14 album permissions are limited.
-● 4.3.1 - 4.3.0 Patch
- Add:
- Remove deprecated properties.
- Moved some UI related properties to ZLPhotoUIConfiguration.
- Add ZLEnlargeButton class instead of extending UIControl to enlarge button click area.
- Add fade animation when taking photos.
...
```
diff --git a/README_CN.md b/README_CN.md
index b91fae2d..12ed3fd4 100644
--- a/README_CN.md
+++ b/README_CN.md
@@ -102,6 +102,9 @@ ZLPhotoBrowser是一款微信样式的图片选择器,支持预览/相册内
### 更新日志
> [更多更新日志](https://github.com/longitachi/ZLPhotoBrowser/blob/master/CHANGELOG.md)
```
+● 4.3.4
+ Fix:
+ 修复图片编辑器的一个bug;
● 4.3.3
Add:
优化加载等待框样式;
@@ -113,12 +116,6 @@ ZLPhotoBrowser是一款微信样式的图片选择器,支持预览/相册内
统一代码风格;
Fix:
修复iOS14相册权限为limited时的一些bug;
-● 4.3.1 - 4.3.0 Patch
- Add:
- 删除已废弃的属性(图片编辑配置相关);
- 从ZLPhotoConfiguration中将部分UI相关的属性移动到ZLPhotoUIConfiguration中;
- 添加UIButton子类ZLEnlargeButton替代之前的UIControl扩展,来增加按钮的点击范围;
- 拍照时新增一个fade动画;
...
```
diff --git a/Sources/General/ZLPhotoBrowser.swift b/Sources/General/ZLPhotoBrowser.swift
index 55e01d18..bc1b2bd1 100644
--- a/Sources/General/ZLPhotoBrowser.swift
+++ b/Sources/General/ZLPhotoBrowser.swift
@@ -28,7 +28,7 @@ import UIKit
import Foundation
import Photos
-let version = "4.3.3"
+let version = "4.3.4"
public struct ZLPhotoBrowserWrapper {
public let base: Base
diff --git a/ZLPhotoBrowser.podspec b/ZLPhotoBrowser.podspec
index 81d6506a..151b6f20 100644
--- a/ZLPhotoBrowser.podspec
+++ b/ZLPhotoBrowser.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'ZLPhotoBrowser'
- s.version = '4.3.3'
+ s.version = '4.3.4'
s.summary = 'A lightweight and pure Swift implemented library for select photos from album'
s.description = <<-DESC