Skip to content

Commit ae82380

Browse files
committed
Version 3.0.2
1 parent aec933a commit ae82380

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
3.0.2 / 2024-25-09
2+
==================
3+
4+
Other Changes
5+
-------------
6+
* Fix publish script
7+
18
3.0.1 / 2024-25-09
29
==================
310

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@ For the complete documentation, see the [Android SDK Guide](https://cloudinary.c
4141
### Gradle Integration
4242
Add the following dependency to your build.gradle:
4343

44-
`implementation 'com.cloudinary:cloudinary-android:3.0.1'`
44+
`implementation 'com.cloudinary:cloudinary-android:3.0.2'`
4545
### Other Options ######################################################################
4646
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:
4747

4848
<dependency>
4949
<groupId>com.cloudinary</groupId>
5050
<artifactId>cloudinary-android</artifactId>
51-
<version>3.0.1</version>
51+
<version>3.0.2</version>
5252
</dependency>
5353

5454
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.

core/src/main/java/com/cloudinary/android/MediaManager.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
* Must be initialized before use, see {@link #init(Context, SignatureProvider, Map)}.
4343
*/
4444
public class MediaManager {
45-
public static final String VERSION = "3.0.1";
45+
public static final String VERSION = "3.0.2";
4646
public static final String INTENT_EXTRA_REQUEST_ID = "INTENT_EXTRA_REQUEST_ID";
4747
public static final String INTENT_EXTRA_REQUEST_RESULT_STATUS = "INTENT_EXTRA_REQUEST_RESULT_STATUS";
4848
public static final String ACTION_REQUEST_STARTED = "com.cloudinary.ACTION_REQUEST_STARTED";

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ [email protected]
1313

1414
# These two properties must use these exact names to be compatible with 'gradle install' plugin.
1515
group=com.cloudinary
16-
version=3.0.1
16+
version=3.0.2
1717
cloudinaryLibsVersion=1.38.0
1818

1919
org.gradle.jvmargs=-Xmx1024m

0 commit comments

Comments
 (0)