diff --git a/CHANGELOG.md b/CHANGELOG.md index c5cfd8dd..0350cb4c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,23 @@ +1.29.0 / 2021-02-10 +=================== + +New functionality +----------------- + * Allow setting the user agent (#235) + * Add support for Apache http-client 4.5 (#234) + +Other changes +------------- + * Fix test name in `ExpressionTest` (#233) + + 1.28.1 / 2021-02-03 ================== * Fix `api` reuse bug when calling `cloudinary.search()` (#232) -1.28.1 / 2021-02-01 +1.28.0 / 2021-02-01 ================== * Add `oauth` support to Admin Api calls. (#230) diff --git a/README.md b/README.md index a9d61ce0..ac8d9ee5 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.28.1 + 1.29.0 ``` -Alternatively, download cloudinary_java from [here](https://repo1.maven.org/maven2/com/cloudinary/cloudinary-core/1.28.1/cloudinary-core-1.28.1.jar) and [here](https://repo1.maven.org/maven2/com/cloudinary/cloudinary-http44/1.28.1/cloudinary-http44-1.28.1.jar) +Alternatively, download cloudinary_java from [here](https://repo1.maven.org/maven2/com/cloudinary/cloudinary-core/1.29.0/cloudinary-core-1.29.0.jar) and [here](https://repo1.maven.org/maven2/com/cloudinary/cloudinary-http44/1.29.0/cloudinary-http44-1.29.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 940e0d0f..75cb5100 100644 --- a/cloudinary-core/src/main/java/com/cloudinary/Cloudinary.java +++ b/cloudinary-core/src/main/java/com/cloudinary/Cloudinary.java @@ -37,7 +37,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.28.1"; + public final static String VERSION = "1.29.0"; static String USER_AGENT_PREFIX = "CloudinaryJava"; public final static String USER_AGENT_JAVA_VERSION = "(Java " + System.getProperty("java.version") + ")"; diff --git a/gradle.properties b/gradle.properties index 484fccbd..ef9fd370 100644 --- a/gradle.properties +++ b/gradle.properties @@ -13,7 +13,7 @@ developerEmail=info@cloudinary.com # These two properties must use these exact names to be compatible with 'gradle install' plugin. group=com.cloudinary -version=1.28.1 +version=1.29.0 gnsp.disableApplyOnlyOnRootProjectEnforcement=true