Skip to content

Commit 17ac9c3

Browse files
author
Amir Tocker
committed
Version 1.14.0
1 parent 89b86be commit 17ac9c3

File tree

4 files changed

+32
-4
lines changed

4 files changed

+32
-4
lines changed

CHANGELOG.md

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

2+
1.14.0 / 2017-07-20
3+
===================
4+
5+
New functionality
6+
-----------------
7+
8+
* Add support for uploading remote urls through `Uploader.uploadLarge()`
9+
* Support resuming `uploadLarge`
10+
* Streaming profile support.
11+
* Update TravisCI to explicitly set distribution
12+
* Allow deleteByToken to pass through when there's no api secret in config.
13+
14+
Other changes
15+
-------------
16+
17+
* Add test for listing transformations with cursor.
18+
* Merge branch 'master' into patch-1
19+
* Make restore test run in parallel
20+
* Set javadoc encoding to UTF-8.
21+
* Update gradle to 4.0.1.
22+
* Fix test to run in parallel.
23+
* Remove use of `DatatypeConverter` which is not supported in Android
24+
* Update Cloudinary dependencies version for java sample project.
25+
* Merge pull request #84 from elevenfive/master
26+
* Close responsestream
27+
* Merge pull request #83 from theel0ja/patch-1
28+
* Improved formatting of markdown
29+
230
1.13.0 / 2017-06-12
331
===================
432

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ The cloudinary_java library is available in [Maven Central](https://repo1.maven.
2929
<dependency>
3030
<groupId>com.cloudinary</groupId>
3131
<artifactId>cloudinary-http44</artifactId>
32-
<version>1.13.0</version>
32+
<version>1.14.0</version>
3333
</dependency>
3434
```
3535

36-
Alternatively, download cloudinary_java from [here](https://repo1.maven.org/maven2/com/cloudinary/cloudinary-core/1.13.0/cloudinary-core-1.13.0.jar) and [here](https://repo1.maven.org/maven2/com/cloudinary/cloudinary-http44/1.13.0/cloudinary-http44-1.13.0.jar)
36+
Alternatively, download cloudinary_java from [here](https://repo1.maven.org/maven2/com/cloudinary/cloudinary-core/1.14.0/cloudinary-core-1.14.0.jar) and [here](https://repo1.maven.org/maven2/com/cloudinary/cloudinary-http44/1.14.0/cloudinary-http44-1.14.0.jar)
3737
and see [pom.xml](https://github.com/cloudinary/cloudinary_java/blob/master/cloudinary-http44/pom.xml) for library dependencies.
3838

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

4646
public final Configuration config;

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ [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.13.0
16+
version=1.14.0

0 commit comments

Comments
 (0)