Skip to content

Commit 0d0d47f

Browse files
Prepare for version 1.2.2
1 parent 2c7ec12 commit 0d0d47f

File tree

5 files changed

+10
-9
lines changed

5 files changed

+10
-9
lines changed

CHANGES.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@
77
1.1.2 - 2015-01-15 - fix support for string eager parameters
88
1.1.3 - 2015-02-24 - Added timeout parameter to admin api and Fixed test and configuration
99
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.
10-
1.2.1 - 2015-06-18 - Fix HTML escaping (fixes upload tags). Allow android unsigned upload without api_key. Fix http44 response closing.
10+
1.2.1 - 2015-06-18 - Fix HTML escaping (fixes upload tags). Allow android unsigned upload without api_key. Fix http44 response closing.
11+
1.2.2 - 2015-10-11 - support apache http 4.3 strategy. support easy overlay/underlay construction. support upload mappings api. support the restore api. normalize user agent. add invalidate flag to rename and explicit. support aspect ratio transformation param. Fix encoding issues when JVM default encoding is not UTF-8. support filename in upload options. close response objects in http44.

README.md

Lines changed: 3 additions & 3 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. From version 1.2.1 cloudinary-http44 is available.
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.1 cloudinary-http44 is available. From version 1.2.2 cloudinary-http43 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

@@ -28,10 +28,10 @@ The cloudinary_java library is available in [Maven Central](https://repo1.maven.
2828
<dependency>
2929
<groupId>com.cloudinary</groupId>
3030
<artifactId>cloudinary-http44</artifactId>
31-
<version>1.2.1</version>
31+
<version>1.2.2</version>
3232
</dependency>
3333

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

3737
## Try it right away

cloudinary-android/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ Cloudinary provides URL and HTTP based APIs that can be easily integrated with a
1414
For Android, Cloudinary provides a library for simplifying the integration even further. The library requires Android 2.3 or higher.
1515

1616
## Manual Setup ######################################################################
17-
Download cloudinary-core-1.2.1.jar from [here](http://search.maven.org/remotecontent?filepath=com/cloudinary/cloudinary-core/1.2.1/cloudinary-core-1.2.1.jar) and cloudinary-android-1.2.1.jar from [here](http://search.maven.org/remotecontent?filepath=com/cloudinary/cloudinary-android/1.2.1/cloudinary-android-1.2.1.jar) and put them in your libs folder.
17+
Download cloudinary-core-1.2.2.jar from [here](http://search.maven.org/remotecontent?filepath=com/cloudinary/cloudinary-core/1.2.2/cloudinary-core-1.2.2.jar) and cloudinary-android-1.2.2.jar from [here](http://search.maven.org/remotecontent?filepath=com/cloudinary/cloudinary-android/1.2.2/cloudinary-android-1.2.2.jar) and put them in your libs folder.
1818

1919
## Maven Integration ######################################################################
2020
The cloudinary_java library is available in [Maven Central](http://repo1.maven.org/maven/). To use it, add the following dependency to your pom.xml:
2121

2222
<dependency>
2323
<groupId>com.cloudinary</groupId>
2424
<artifactId>cloudinary-android</artifactId>
25-
<version>1.2.1</version>
25+
<version>1.2.2</version>
2626
</dependency>
2727

2828

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.2.1";
43+
public final static String VERSION = "1.2.2";
4444
public final static String USER_AGENT = "CloudinaryJava/" + VERSION;
4545

4646
public final Configuration config;

samples/photo_album/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323
<dependency>
2424
<groupId>com.cloudinary</groupId>
2525
<artifactId>cloudinary-taglib</artifactId>
26-
<version>1.2.1-SNAPSHOT</version>
26+
<version>1.2.2-SNAPSHOT</version>
2727
</dependency>
2828
<dependency>
2929
<groupId>com.cloudinary</groupId>
3030
<artifactId>cloudinary-http44</artifactId>
31-
<version>1.2.1-SNAPSHOT</version>
31+
<version>1.2.2-SNAPSHOT</version>
3232
</dependency>
3333
<dependency>
3434
<groupId>org.springframework</groupId>

0 commit comments

Comments
 (0)