Skip to content

Commit 656958e

Browse files
author
Amir Tocker
committed
Version 1.13.0
1 parent d07bfaa commit 656958e

File tree

5 files changed

+27
-6
lines changed

5 files changed

+27
-6
lines changed

CHANGELOG.md

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

2+
1.13.0 / 2017-06-12
3+
===================
4+
5+
New functionality
6+
-----------------
7+
8+
* Add support for `format` in Responsive breakpoints transformation. (#78)
9+
* Add `url_suffix` support for private images. (#76)
10+
* Add `type` parameter to `Api.publishResource()` (#73)
11+
* Add support for fetch overlay/underlay (#69)
12+
* Add `deleteByToken` to `Uploader`.
13+
* Rename `deleteDerivedResourcesByTransformations` to `deleteDerivedByTransformation`
14+
* Fix `deleteStreamProfile` no-options overload.
15+
* Add support for *TravisCI* tests
16+
* Replace Maven with Gradle as build tool
17+
18+
Other changes
19+
-------------
20+
21+
* Parallelize tests.
22+
223
1.12.0 / 2017-05-01
324
===================
425

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.12.0</version>
31+
<version>1.13.0</version>
3232
</dependency>
3333

34-
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)
34+
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)
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.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.
17+
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.
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.2</version>
25+
<version>1.13.0</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.12.0";
43+
public final static String VERSION = "1.13.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 @@ developerEmail=info@cloudinary.com
1313

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

0 commit comments

Comments
 (0)