Skip to content

Commit 00c99ed

Browse files
author
Amir Tocker
committed
Version 1.15.0
1 parent fe423f2 commit 00c99ed

File tree

4 files changed

+22
-4
lines changed

4 files changed

+22
-4
lines changed

CHANGELOG.md

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

2+
1.15.0 / 2017-09-05
3+
===================
4+
5+
New functionality
6+
-----------------
7+
8+
* Add format field to `ResponsiveBreakpoint`.
9+
* The Android SDK has been moved to https://github.com/cloudinary/cloudinary_android
10+
11+
Other changes
12+
-------------
13+
14+
* Add badges to README
15+
* Create LICENSE
16+
* Centralize response handling and respect `returnError` param.
17+
* Fix boolean config values in tag generation
18+
* Fix project for java8, update cloudinary dependencies.
19+
220
1.14.0 / 2017-07-20
321
===================
422

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ The cloudinary_java library is available in [Maven Central](https://repo1.maven.
3333
<dependency>
3434
<groupId>com.cloudinary</groupId>
3535
<artifactId>cloudinary-http44</artifactId>
36-
<version>1.14.0</version>
36+
<version>1.15.0</version>
3737
</dependency>
3838
```
3939

40-
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)
40+
Alternatively, download cloudinary_java from [here](https://repo1.maven.org/maven2/com/cloudinary/cloudinary-core/1.15.0/cloudinary-core-1.15.0.jar) and [here](https://repo1.maven.org/maven2/com/cloudinary/cloudinary-http44/1.15.0/cloudinary-http44-1.15.0.jar)
4141
and see [pom.xml](https://github.com/cloudinary/cloudinary_java/blob/master/cloudinary-http44/pom.xml) for library dependencies.
4242

4343
## 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.14.0";
43+
public final static String VERSION = "1.15.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.14.0
16+
version=1.15.0

0 commit comments

Comments
 (0)