diff --git a/CHANGELOG.md b/CHANGELOG.md index fa3d2f6..9e9e7d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,10 @@ +2.3.0 / 2022-10-11 +================== +Other changes +------------- + * Replace EverNote with Android WorkManager + 2.2.0 / 2022-04-07 ================== Other change diff --git a/README.md b/README.md index f4f3ed7..a8a6bb4 100644 --- a/README.md +++ b/README.md @@ -40,14 +40,14 @@ For the complete documentation, see the [Android SDK Guide](https://cloudinary.c ### Gradle Integration Add the following dependency to your build.gradle: -`implementation 'com.cloudinary:cloudinary-android:2.2.0'` +`implementation 'com.cloudinary:cloudinary-android:2.3.0'` ### Other Options ###################################################################### The cloudinary_android library is available in [Maven Central](http://repo1.maven.org/maven/). To use it, add the following dependency to your pom.xml: com.cloudinary cloudinary-android - 2.2.0 + 2.3.0 Download the latest cloudinary-android from [here](https://mvnrepository.com/artifact/com.cloudinary/cloudinary-android-core) and the latest cloudinary-core from [here](https://mvnrepository.com/artifact/com.cloudinary/cloudinary-core) and put them in your libs folder. diff --git a/core/src/main/java/com/cloudinary/android/MediaManager.java b/core/src/main/java/com/cloudinary/android/MediaManager.java index 70416f4..c136534 100755 --- a/core/src/main/java/com/cloudinary/android/MediaManager.java +++ b/core/src/main/java/com/cloudinary/android/MediaManager.java @@ -42,7 +42,7 @@ * Must be initialized before use, see {@link #init(Context, SignatureProvider, Map)}. */ public class MediaManager { - public static final String VERSION = "2.2.0"; + public static final String VERSION = "2.3.0"; public static final String INTENT_EXTRA_REQUEST_ID = "INTENT_EXTRA_REQUEST_ID"; public static final String INTENT_EXTRA_REQUEST_RESULT_STATUS = "INTENT_EXTRA_REQUEST_RESULT_STATUS"; public static final String ACTION_REQUEST_STARTED = "com.cloudinary.ACTION_REQUEST_STARTED"; diff --git a/gradle.properties b/gradle.properties index b5da750..0af00d5 100644 --- a/gradle.properties +++ b/gradle.properties @@ -13,7 +13,7 @@ developerEmail=info@cloudinary.com # These two properties must use these exact names to be compatible with 'gradle install' plugin. group=com.cloudinary -version=2.2.0 +version=2.3.0 cloudinaryLibsVersion=1.32.0 org.gradle.jvmargs=-Xmx1024m