Skip to content

Commit

Permalink
Version 1.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Amir Tocker committed Jun 13, 2017
1 parent d07bfaa commit 656958e
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 6 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,25 @@

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

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

* Add support for `format` in Responsive breakpoints transformation. (#78)
* Add `url_suffix` support for private images. (#76)
* Add `type` parameter to `Api.publishResource()` (#73)
* Add support for fetch overlay/underlay (#69)
* Add `deleteByToken` to `Uploader`.
* Rename `deleteDerivedResourcesByTransformations` to `deleteDerivedByTransformation`
* Fix `deleteStreamProfile` no-options overload.
* Add support for *TravisCI* tests
* Replace Maven with Gradle as build tool

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

* Parallelize tests.

1.12.0 / 2017-05-01
===================

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

Alternatively, download cloudinary_java from [here](https://repo1.maven.org/maven2/com/cloudinary/cloudinary-core/1.12.0/cloudinary-core-1.12.0.jar) and [here](https://repo1.maven.org/maven2/com/cloudinary/cloudinary-http44/1.12.0/cloudinary-http44-1.12.0.jar)
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)
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
4 changes: 2 additions & 2 deletions cloudinary-android/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ Cloudinary provides URL and HTTP based APIs that can be easily integrated with a
For Android, Cloudinary provides a library for simplifying the integration even further. The library requires Android 2.3 or higher.

## Manual Setup ######################################################################
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.
Download cloudinary-core-1.13.0.jar from [here](http://search.maven.org/remotecontent?filepath=com/cloudinary/cloudinary-core/1.13.0/cloudinary-core-1.13.0.jar) and cloudinary-android-1.13.0.jar from [here](http://search.maven.org/remotecontent?filepath=com/cloudinary/cloudinary-android/1.13.0/cloudinary-android-1.13.0.jar) and put them in your libs folder.

## Maven Integration ######################################################################
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:

<dependency>
<groupId>com.cloudinary</groupId>
<artifactId>cloudinary-android</artifactId>
<version>1.2.2</version>
<version>1.13.0</version>
</dependency>


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.12.0";
public final static String VERSION = "1.13.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 @@ [email protected]

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

0 comments on commit 656958e

Please sign in to comment.