Skip to content

Commit 3939b47

Browse files
author
Amir Tocker
committed
Version 1.9.0
1 parent 89e06f1 commit 3939b47

File tree

3 files changed

+23
-3
lines changed

3 files changed

+23
-3
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,24 @@
11

2+
1.9.0 / 2017-03-08
3+
==================
4+
5+
New functionality
6+
-----------------
7+
8+
* Support **User defined variables** and **expressions**.
9+
* Add `async` parameter to upload params(#63)
10+
* Add `expired_at` parameter to private download. (#60)
11+
* Add `moderation` parameter in explicit call (#59)
12+
13+
Other changes
14+
-------------
15+
16+
* Fix double encoding for commas and slashes in text layers (#66)
17+
* Add artistic filter test (#65)
18+
* Add gravity-auto test (#64)
19+
* Fix `OutOfMemoryError` when uploading large files in android. Fixes #55 (#57)
20+
* Fix encoding error in api update resource (#61)
21+
222
1.8.1 / 2017-02-22
323
==================
424

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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.8.1</version>
31+
<version>1.9.0</version>
3232
</dependency>
3333

34-
Alternatively, download cloudinary_java from [here](https://repo1.maven.org/maven2/com/cloudinary/cloudinary-core/1.8.1/cloudinary-core-1.8.1.jar) and [here](https://repo1.maven.org/maven2/com/cloudinary/cloudinary-http44/1.8.1/cloudinary-http44-1.8.1.jar)
34+
Alternatively, download cloudinary_java from [here](https://repo1.maven.org/maven2/com/cloudinary/cloudinary-core/1.9.0/cloudinary-core-1.9.0.jar) and [here](https://repo1.maven.org/maven2/com/cloudinary/cloudinary-http44/1.9.0/cloudinary-http44-1.9.0.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-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.8.1";
43+
public final static String VERSION = "1.9.0";
4444
public final static String USER_AGENT = "CloudinaryJava/" + VERSION;
4545

4646
public final Configuration config;

0 commit comments

Comments
 (0)