From d4c56c06de19c4bc1d0ae19b4943ef94ae383400 Mon Sep 17 00:00:00 2001 From: Burhanuddin Rashid Date: Thu, 16 Feb 2023 13:12:34 +0530 Subject: [PATCH] Updating version 3.0.0 --- README.md | 4 ++-- app/build.gradle | 6 +++--- photoeditor/build.gradle | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index c312b748..24c9b6ed 100644 --- a/README.md +++ b/README.md @@ -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-2.0.0-blue.svg)](https://search.maven.org/artifact/com.burhanrashid52/photoeditor/2.0.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-3.0.0-blue.svg)](https://search.maven.org/artifact/com.burhanrashid52/photoeditor/3.0.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) [![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) @@ -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:2.0.0' +implementation 'com.burhanrashid52:photoeditor:3.0.0' ``` or we can also import the :photoeditor module from sample for further customization diff --git a/app/build.gradle b/app/build.gradle index 4b04eca2..80cdf457 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -9,8 +9,8 @@ android { applicationId "com.burhanrashid52.photoediting" minSdkVersion 21 targetSdkVersion 32 - versionCode 7 - versionName "2.0.0" + versionCode 8 + versionName "3.0.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } @@ -31,7 +31,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:2.0.0' + //implementation 'com.burhanrashid52:photoeditor:3.0.0' implementation project(':photoeditor') implementation 'androidx.appcompat:appcompat:1.6.0' diff --git a/photoeditor/build.gradle b/photoeditor/build.gradle index 665cdce8..4cedd3f5 100644 --- a/photoeditor/build.gradle +++ b/photoeditor/build.gradle @@ -53,7 +53,7 @@ dependencies { ext { PUBLISH_GROUP_ID = 'com.burhanrashid52' - PUBLISH_VERSION = '2.0.0' + PUBLISH_VERSION = '3.0.0' PUBLISH_ARTIFACT_ID = 'photoeditor' }