Skip to content

Commit

Permalink
Version 1.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Amir Tocker committed Jul 20, 2017
1 parent 89b86be commit 17ac9c3
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 4 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,32 @@

1.14.0 / 2017-07-20
===================

New functionality
-----------------

* Add support for uploading remote urls through `Uploader.uploadLarge()`
* Support resuming `uploadLarge`
* Streaming profile support.
* Update TravisCI to explicitly set distribution
* Allow deleteByToken to pass through when there's no api secret in config.

Other changes
-------------

* Add test for listing transformations with cursor.
* Merge branch 'master' into patch-1
* Make restore test run in parallel
* Set javadoc encoding to UTF-8.
* Update gradle to 4.0.1.
* Fix test to run in parallel.
* Remove use of `DatatypeConverter` which is not supported in Android
* Update Cloudinary dependencies version for java sample project.
* Merge pull request #84 from elevenfive/master
* Close responsestream
* Merge pull request #83 from theel0ja/patch-1
* Improved formatting of markdown

1.13.0 / 2017-06-12
===================

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ The cloudinary_java library is available in [Maven Central](https://repo1.maven.
<dependency>
<groupId>com.cloudinary</groupId>
<artifactId>cloudinary-http44</artifactId>
<version>1.13.0</version>
<version>1.14.0</version>
</dependency>
```

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)
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)
and see [pom.xml](https://github.com/cloudinary/cloudinary_java/blob/master/cloudinary-http44/pom.xml) for library dependencies.

## Try it right away
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class Cloudinary {
public final static String AKAMAI_SHARED_CDN = "res.cloudinary.com";
public final static String SHARED_CDN = AKAMAI_SHARED_CDN;

public final static String VERSION = "1.13.0";
public final static String VERSION = "1.14.0";
public final static String USER_AGENT = "CloudinaryJava/" + VERSION;

public final Configuration config;
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ developerEmail=info@cloudinary.com

# These two properties must use these exact names to be compatible with 'gradle install' plugin.
group=com.cloudinary
version=1.13.0
version=1.14.0

0 comments on commit 17ac9c3

Please # to comment.