Skip to content

Commit

Permalink
Bumped version to 2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
longitachi committed Mar 22, 2024
1 parent 79611ba commit ba2e7ad
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 11 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,18 @@

-----

## [2.0.2](https://github.com/longitachi/ZLImageEditor/releases/tag/2.0.1) (2024-03-22)
### Add:
* Adapt the text sticker input interface for iPad landscape mode.

### Fix:
* Fix the bug where cropping square images to circular shape fails.

-----

## [2.0.1](https://github.com/longitachi/ZLImageEditor/releases/tag/2.0.1) (2023-11-27)
### Add:
* Adapt to iOS 17, replace UIGraphicsBeginImageContextWithOptions with UIGraphicsImageRenderer.
* Adapt to iOS 17, replace UIGraphicsBeginImageContextWithOptions with UIGraphicsImageRenderer.

-----

Expand Down
14 changes: 6 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,20 +53,18 @@ ZLEditImageViewController.showEditImageVC(parentVC: self, image: image, editMode
### <a id="ChangeLog"></a>Change Log
> [More logs](https://github.com/longitachi/ZLImageEditor/blob/master/CHANGELOG.md)
```
● 2.0.2
Add:
Adapt the text sticker input interface for iPad landscape mode.
Fix:
Fix the bug where cropping square images to circular shape fails.
● 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.
● 1.2.1
Add:
Optimize the undo and redo function in the image editor. All operations support undo and redo.
Dutch support added.
Supports setting the default font for text stickers.
Fix:
Fix the bug that text stickers are not displayed when typing in Arabic.
...
```

Expand Down Expand Up @@ -119,7 +117,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.1" as its earliest version.
2. In the next page, specify the version resolving rule as "Up to Next Major" with "2.0.2" 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.

### <a id="Support"></a> Support
Expand Down
2 changes: 1 addition & 1 deletion Sources/General/ZLImageEditor.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
import Foundation
import UIKit

let version = "2.0.1"
let version = "2.0.2"

public struct ZLImageEditorWrapper<Base> {
public let base: Base
Expand Down
2 changes: 1 addition & 1 deletion ZLImageEditor.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'ZLImageEditor'
s.version = '2.0.1'
s.version = '2.0.2'
s.summary = 'A powerful image editor framework. Supports graffiti, cropping, mosaic, text stickers, picture stickers, filters, adjust.'

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

0 comments on commit ba2e7ad

Please sign in to comment.