Skip to content

Commit

Permalink
Bumped up the version to 1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
burhanrashid52 committed Jul 31, 2021
1 parent e952d82 commit 8d72cf2
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,4 +77,8 @@ new TextStyleBuilder()
### 1.5.0
- Deprecated : `setBrushSize()` , `setOpacity()` and `setBrushColor`. Use `ShapeBuilder`
- New : Drawing Shapes using `ShapeBuilder`. Support Line, Brush, Oval and Rectangle out of the box.Deprecated
- New : Allowing to add text shadow using `TextStyleBuilder.withTextShadow()`
- New : Allowing to add text shadow using `TextStyleBuilder.withTextShadow()`

### 1.5.1
- New : #379 Should disallow drawing on left or right of the image using `photoEditor.setClipSourceImage(true)`
- New/Break : #383 Get a callback when the image source is touched `onTouchSourceImage(MotionEvent event);`
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-1.5.0-blue.svg)](https://search.maven.org/artifact/com.burhanrashid52/photoeditor/1.5.0/aar) ![API](https://img.shields.io/badge/API-14%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-1.5.1-blue.svg)](https://search.maven.org/artifact/com.burhanrashid52/photoeditor/1.5.1/aar) ![API](https://img.shields.io/badge/API-14%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 @@ -47,7 +47,7 @@ PhotoEditor ```v.1.0.0``` is a migration to androidX and dropping the support of
## 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:1.5.0'
implementation 'com.burhanrashid52:photoeditor:1.5.1'
```
or we can also import the :photoeditor module from sample for further customization

Expand Down
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ android {
applicationId "com.burhanrashid52.photoediting"
minSdkVersion 14
targetSdkVersion 30
versionCode 5
versionName "1.5.0"
versionCode 6
versionName "1.5.1"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
Expand All @@ -31,7 +31,7 @@ dependencies {
// NOTE(lucianocheng): Using the local photoeditor implementation instead of the published
// maven package to faciliate testing, and for the integration tests
// to work on locally modified code.
//implementation 'com.burhanrashid52:photoeditor:1.5.0'
//implementation 'com.burhanrashid52:photoeditor:1.5.1'
implementation project(':photoeditor')
implementation 'androidx.cardview:cardview:1.0.0'

Expand Down
6 changes: 3 additions & 3 deletions photoeditor/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
defaultConfig {
minSdkVersion 14
targetSdkVersion 30
versionCode 4
versionName "1.5.0"
versionCode 5
versionName "1.5.1"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

}
Expand Down Expand Up @@ -52,7 +52,7 @@ dependencies {

ext {
PUBLISH_GROUP_ID = 'com.burhanrashid52'
PUBLISH_VERSION = '1.5.0'
PUBLISH_VERSION = '1.5.1'
PUBLISH_ARTIFACT_ID = 'photoeditor'
}

Expand Down

0 comments on commit 8d72cf2

Please sign in to comment.