Skip to content

Commit 666dda4

Browse files
committed
Bumped version to 2.0.1
1 parent 24945cd commit 666dda4

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.1](https://github.com/longitachi/ZLImageEditor/releases/tag/2.0.1) (2023-11-27)
6+
### Add:
7+
* Adapt to iOS 17, replace UIGraphicsBeginImageContextWithOptions with UIGraphicsImageRenderer.
8+
9+
-----
10+
511
## [2.0.0](https://github.com/longitachi/ZLImageEditor/releases/tag/2.0.0) (2023-11-08)
612
### Add:
713
* Enhancing the drawing tool with an eraser function.

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.1
57+
Add:
58+
Adapt to iOS 17, replace UIGraphicsBeginImageContextWithOptions with UIGraphicsImageRenderer.
5659
● 2.0.0
5760
Add:
5861
Enhancing the drawing tool with an eraser function.
@@ -64,9 +67,6 @@ ZLEditImageViewController.showEditImageVC(parentVC: self, image: image, editMode
6467
Supports setting the default font for text stickers.
6568
Fix:
6669
Fix the bug that text stickers are not displayed when typing in Arabic.
67-
● 1.1.8.1, 1.1.8.2 - 1.1.8 Patch
68-
Fix:
69-
Disable TextView when user ends editing.
7070
...
7171
```
7272

@@ -119,7 +119,7 @@ $ carthage update ZLImageEditor
119119

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

125125
### <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.0"
30+
let version = "2.0.1"
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.0'
3+
s.version = '2.0.1'
44
s.summary = 'A powerful image editor framework. Supports graffiti, cropping, mosaic, text stickers, picture stickers, filters, adjust(brightness, contrast, saturation).'
55

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

0 commit comments

Comments
 (0)