Skip to content

Commit

Permalink
Revert "v.3.1.0 Release release changes"
Browse files Browse the repository at this point in the history
This reverts commit 35512b8.
  • Loading branch information
burhanrashid52 authored Jul 23, 2024
1 parent 35512b8 commit 32ab84b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 9 deletions.
5 changes: 1 addition & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,4 @@ new TextStyleBuilder()
- Fixed : #522 Leak Graphics memory when changing filter

### 3.0.2
- Fixed : #460 Wrong return value of undo() method

### 3.1.0
- New : #555 Check is undo/redo availabe using `isUndoAvailable` and `isRedoAvailable`
- Fixed : #460 Wrong return value of undo() method
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# PhotoEditor

![Github Action](https://github.com/burhanrashid52/PhotoEditor/actions/workflows/app_build_and_test.yml/badge.svg)
[![Downloads](https://img.shields.io/badge/Download-3.1.0-blue.svg)](https://search.maven.org/artifact/com.burhanrashid52/photoeditor/3.1.0/aar) ![API](https://img.shields.io/badge/API-21%2B-brightgreen.svg) [![JavaDoc](https://img.shields.io/badge/JavaDoc-PhotoEditor-blue.svg)](https://burhanrashid52.github.io/PhotoEditor/) [![Uplabs](https://img.shields.io/badge/Uplabs-PhotoEditor-orange.svg)](https://www.uplabs.com/posts/photoeditor)
[![Downloads](https://img.shields.io/badge/Download-3.0.2-blue.svg)](https://search.maven.org/artifact/com.burhanrashid52/photoeditor/3.0.2/aar) ![API](https://img.shields.io/badge/API-21%2B-brightgreen.svg) [![JavaDoc](https://img.shields.io/badge/JavaDoc-PhotoEditor-blue.svg)](https://burhanrashid52.github.io/PhotoEditor/) [![Uplabs](https://img.shields.io/badge/Uplabs-PhotoEditor-orange.svg)](https://www.uplabs.com/posts/photoeditor)
[![AndroidArsenal](https://img.shields.io/badge/Android%20Arsenal-PhotoEditor-blue.svg)](https://android-arsenal.com/details/1/6736)
[![AndroidDevDigest](https://img.shields.io/badge/AndroidDev%20Digest-%23185-brightgreen.svg)](https://www.androiddevdigest.com/digest-185)
[![AwesomeAndroid](https://img.shields.io/badge/Awesome%20Android-%2397-red.svg)](https://android.libhunt.com/newsletter/97)
Expand Down Expand Up @@ -43,7 +43,7 @@ A Photo Editor library with simple, easy support for image editing using Paints,
## Getting Started
To start with this, we need to simply add the dependencies from `mavenCentral()` in the gradle file of our app module like this
```groovy
implementation 'com.burhanrashid52:photoeditor:3.1.0'
implementation 'com.burhanrashid52:photoeditor:3.0.2'
```
or we can also import the :photoeditor module from sample for further customization

Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ android {
minSdkVersion 21
targetSdkVersion 34
versionCode 10
versionName "3.1.0"
versionName "3.0.2"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

Expand All @@ -35,7 +35,7 @@ dependencies {
// NOTE(lucianocheng): Using the local photoeditor implementation instead of the published
// maven package to facilitate testing, and for the integration tests
// to work on locally modified code.
//implementation 'com.burhanrashid52:photoeditor:3.1.0'
//implementation 'com.burhanrashid52:photoeditor:3.0.2'
implementation project(':photoeditor')

implementation 'androidx.appcompat:appcompat:1.7.0'
Expand Down
2 changes: 1 addition & 1 deletion photoeditor/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ dependencies {

ext {
PUBLISH_GROUP_ID = 'com.burhanrashid52'
PUBLISH_VERSION = '3.1.0'
PUBLISH_VERSION = '3.0.2'
PUBLISH_ARTIFACT_ID = 'photoeditor'
}

Expand Down

0 comments on commit 32ab84b

Please sign in to comment.