diff --git a/CHANGELOG.md b/CHANGELOG.md index 19dcbdd3..d65846a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,27 @@ +1.19.0 / 2018-07-22 +=================== + +New functionality +----------------- + + * Add support of `auto` value for `start_offset` transformation parameter + * Feature/keyframe interval support + +Other changes +------------- + + * Fix content range header in chunked upload (force US locale) + * Keep original filename in `uploadLarge` before sending the InputStream + * Update gradle for java 7 TLS fix (https://github.com/gradle/gradle/issues/5740) + * Fix Api list tags test - verify the list instead of specific tags + * Cleanup upload preset from `testGetUploadPreset` (#129) + * Add int overload to `TextLayer.letterSpacing()` + * Fix responsive breakpoint format field implementation + * Separate modules to run on different travis jobs. + * Remove `test02Resources` test (broken and unnecessary). + * Fix raw convert error message test + 1.18.0 / 2018-03-15 =================== diff --git a/README.md b/README.md index 04c8841a..4aa630a7 100644 --- a/README.md +++ b/README.md @@ -34,11 +34,11 @@ The cloudinary_java library is available in [Maven Central](https://repo1.maven. com.cloudinary cloudinary-http44 - 1.18.0 + 1.19.0 ``` -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) +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) and see [build.gradle](https://github.com/cloudinary/cloudinary_java/blob/master/cloudinary-http44/build.gradle) for library dependencies. ## Try it right away diff --git a/cloudinary-core/src/main/java/com/cloudinary/Cloudinary.java b/cloudinary-core/src/main/java/com/cloudinary/Cloudinary.java index e922ac61..a5346a29 100644 --- a/cloudinary-core/src/main/java/com/cloudinary/Cloudinary.java +++ b/cloudinary-core/src/main/java/com/cloudinary/Cloudinary.java @@ -32,7 +32,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.18.0"; + public final static String VERSION = "1.19.0"; public final static String USER_AGENT = "CloudinaryJava/" + VERSION; public final Configuration config; diff --git a/gradle.properties b/gradle.properties index 4e347032..187b47f9 100644 --- a/gradle.properties +++ b/gradle.properties @@ -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.18.0 +version=1.19.0