Skip to content

Commit dcd3f26

Browse files
Increment to version 1.2.0
1 parent be5a22e commit dcd3f26

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

CHANGES.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@
55
1.1.0 - 2014-11-17 - Support folder listing API. Consolidate Android and Java client libraries. Support signed urls in tag helpers (image and url)
66
1.1.1 - 2014-12-18 - Support secure domain sharding. Don't sign version component. Support url suffix and use root path. Support tags in upload large.
77
1.1.2 - 2015-01-15 - fix support for string eager parameters
8-
1.1.3 - 2015-02-24 - Added timeout parameter to admin api and Fixed test and configuration
8+
1.1.3 - 2015-02-24 - Added timeout parameter to admin api and Fixed test and configuration
9+
1.2.0 - 2015-04-13 - Support httpcomponents 4.4. Support for video tag and transformations. support ftp url upload. support eager_async in explicit. Fix UTF-8 issues in API. Improved parameter support for upload_large.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Cloudinary provides URL and HTTP based APIs that can be easily integrated with a
1414

1515
For Java, Cloudinary provides a library for simplifying the integration even further.
1616

17-
**Note:** Starting from version 1.1.0, you should depend on cloudinary-http42 for Java and cloudinary-android for Android. The artifact cloudinary is deprecated.
17+
**Note:** Starting from version 1.1.0, you should depend on cloudinary-http42 for Java and cloudinary-android for Android. The artifact cloudinary is deprecated. From version 1.2.0 cloudinary-http44 is available.
1818

1919
**Note:** This readme intended mainly for Web applications. For **Android** specific instructions, see: https://github.com/cloudinary/cloudinary_java/tree/master/cloudinary-android
2020

@@ -27,11 +27,11 @@ The cloudinary_java library is available in [Maven Central](https://repo1.maven.
2727

2828
<dependency>
2929
<groupId>com.cloudinary</groupId>
30-
<artifactId>cloudinary-http42</artifactId>
31-
<version>1.1.3</version>
30+
<artifactId>cloudinary-http44</artifactId>
31+
<version>1.2.0</version>
3232
</dependency>
3333

34-
Alternatively, download cloudinary_java from [here](https://repo1.maven.org/maven2/com/cloudinary/cloudinary-core/1.1.3/cloudinary-core-1.1.3.jar) and [here](https://repo1.maven.org/maven2/com/cloudinary/cloudinary-http42/1.1.3/cloudinary-http42-1.1.3.jar)
34+
Alternatively, download cloudinary_java from [here](https://repo1.maven.org/maven2/com/cloudinary/cloudinary-core/1.2.0/cloudinary-core-1.2.0.jar) and [here](https://repo1.maven.org/maven2/com/cloudinary/cloudinary-http44/1.2.0/cloudinary-http42-1.2.0.jar)
3535
and see [pom.xml](https://github.com/cloudinary/cloudinary_java/blob/master/cloudinary-http42/pom.xml) for library dependencies.
3636

3737
## Try it right away

cloudinary-core/src/main/java/com/cloudinary/Cloudinary.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public class Cloudinary {
4040
public final static String AKAMAI_SHARED_CDN = "res.cloudinary.com";
4141
public final static String SHARED_CDN = AKAMAI_SHARED_CDN;
4242

43-
public final static String VERSION = "1.1.3";
43+
public final static String VERSION = "1.2.0";
4444
public final static String USER_AGENT = "cld-java-" + VERSION;
4545

4646
public final Configuration config;

0 commit comments

Comments
 (0)