Skip to content

Commit fdbe597

Browse files
committed
Version 1.27.0
1 parent 4b70404 commit fdbe597

File tree

4 files changed

+23
-5
lines changed

4 files changed

+23
-5
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
2+
1.27.0 / 2020-04-06
3+
==================
4+
5+
New functionality
6+
-----------------
7+
8+
* Separate modules (io, preprocess, ui).
9+
* Add support for native Upload-Widget and video preprocessing
10+
11+
Other changes
12+
-------------
13+
14+
* Automate publishing script, bump gradle version to 6.0.1 (#105)
15+
* Change `compile` to `implementation` in README.MD
16+
* Bump cloudinary-core version (#108)
17+
* Use cloudinary-java's `isRemoteUrl` (#92)
18+
119
1.26.0 / 2019-02-13
220
===================
321

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@ The library requires Android version 4.0.3 (Ice Cream Sandwich) and up.
1717
## Gradle Integration
1818
Add the following dependency to your build.gradle:
1919

20-
`implementation group: 'com.cloudinary', name: 'cloudinary-android', version: '1.26.0'`
20+
`implementation group: 'com.cloudinary', name: 'cloudinary-android', version: '1.27.0'`
2121
## Manual Setup ######################################################################
22-
Download cloudinary-android-1.26.0.jar from [here](http://central.maven.org/maven2/com/cloudinary/cloudinary-android/1.26.0/cloudinary-android-1.26.0.aar) and cloudinary-core-1.14.0.jar from [here](http://central.maven.org/maven2/com/cloudinary/cloudinary-core/1.14.0/cloudinary-core-1.14.0.jar) and put them in your libs folder.
22+
Download cloudinary-android-1.27.0.jar from [here](http://central.maven.org/maven2/com/cloudinary/cloudinary-android/1.27.0/cloudinary-android-1.27.0.aar) and cloudinary-core-1.25.0.jar from [here](http://central.maven.org/maven2/com/cloudinary/cloudinary-core/1.14.0/cloudinary-core-1.14.0.jar) and put them in your libs folder.
2323

2424
## Maven Integration ######################################################################
2525
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:
2626

2727
<dependency>
2828
<groupId>com.cloudinary</groupId>
2929
<artifactId>cloudinary-android</artifactId>
30-
<version>1.26.0</version>
30+
<version>1.27.0</version>
3131
</dependency>
3232

3333

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
* Must be initialized before use, see {@link #init(Context, SignatureProvider, Map)}.
3939
*/
4040
public class MediaManager {
41-
public static final String VERSION = "1.26.0";
41+
public static final String VERSION = "1.27.0";
4242
public static final String INTENT_EXTRA_REQUEST_ID = "INTENT_EXTRA_REQUEST_ID";
4343
public static final String INTENT_EXTRA_REQUEST_RESULT_STATUS = "INTENT_EXTRA_REQUEST_RESULT_STATUS";
4444
public static final String ACTION_REQUEST_STARTED = "com.cloudinary.ACTION_REQUEST_STARTED";

gradle.properties

Lines changed: 1 addition & 1 deletion
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=1.26.0
16+
version=1.27.0
1717
cloudinaryLibsVersion=1.25.0
1818

1919
org.gradle.jvmargs=-Xmx1024m

0 commit comments

Comments
 (0)