Skip to content

Commit 8fabd29

Browse files
committed
Version 1.19.0
1 parent 69e50ce commit 8fabd29

File tree

4 files changed

+27
-4
lines changed

4 files changed

+27
-4
lines changed

CHANGELOG.md

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

2+
1.19.0 / 2018-07-22
3+
===================
4+
5+
New functionality
6+
-----------------
7+
8+
* Add support of `auto` value for `start_offset` transformation parameter
9+
* Feature/keyframe interval support
10+
11+
Other changes
12+
-------------
13+
14+
* Fix content range header in chunked upload (force US locale)
15+
* Keep original filename in `uploadLarge` before sending the InputStream
16+
* Update gradle for java 7 TLS fix (https://github.com/gradle/gradle/issues/5740)
17+
* Fix Api list tags test - verify the list instead of specific tags
18+
* Cleanup upload preset from `testGetUploadPreset` (#129)
19+
* Add int overload to `TextLayer.letterSpacing()`
20+
* Fix responsive breakpoint format field implementation
21+
* Separate modules to run on different travis jobs.
22+
* Remove `test02Resources` test (broken and unnecessary).
23+
* Fix raw convert error message test
24+
225
1.18.0 / 2018-03-15
326
===================
427

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ The cloudinary_java library is available in [Maven Central](https://repo1.maven.
3434
<dependency>
3535
<groupId>com.cloudinary</groupId>
3636
<artifactId>cloudinary-http44</artifactId>
37-
<version>1.18.0</version>
37+
<version>1.19.0</version>
3838
</dependency>
3939
```
4040

41-
Alternatively, download cloudinary_java from [here](https://repo1.maven.org/maven2/com/cloudinary/cloudinary-core/1.18.0/cloudinary-core-1.18.0.jar) and [here](https://repo1.maven.org/maven2/com/cloudinary/cloudinary-http44/1.18.0/cloudinary-http44-1.18.0.jar)
41+
Alternatively, download cloudinary_java from [here](https://repo1.maven.org/maven2/com/cloudinary/cloudinary-core/1.19.0/cloudinary-core-1.19.0.jar) and [here](https://repo1.maven.org/maven2/com/cloudinary/cloudinary-http44/1.19.0/cloudinary-http44-1.19.0.jar)
4242
and see [build.gradle](https://github.com/cloudinary/cloudinary_java/blob/master/cloudinary-http44/build.gradle) for library dependencies.
4343

4444
## 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
@@ -32,7 +32,7 @@ public class Cloudinary {
3232
public final static String AKAMAI_SHARED_CDN = "res.cloudinary.com";
3333
public final static String SHARED_CDN = AKAMAI_SHARED_CDN;
3434

35-
public final static String VERSION = "1.18.0";
35+
public final static String VERSION = "1.19.0";
3636
public final static String USER_AGENT = "CloudinaryJava/" + VERSION;
3737

3838
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.18.0
16+
version=1.19.0

0 commit comments

Comments
 (0)