diff --git a/CHANGELOG.md b/CHANGELOG.md index e0859ed..e981452 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,16 @@ +1.4.0 / 2022-05-11 +================== + + * Fix `Resize.fill` variables names + * Add support to disable b-frames for h265 video codec + * Add `format` qualifier to `fl_waveform` + * Support text style and color as user variables + * Add support for `g_ocr_text` + * Add support for underlay, resize fill, `Source.image` + * Add support for video overlay in `config.js` + * Add support for tint effect + 1.3.0 / 2022-05-01 ================== diff --git a/README.md b/README.md index 5ea98e3..baaf98b 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ Add the SDK to your project as a dependency, we recommend using a build manageme Add the Cloudinary Kotlin SDK to the dependencies section of your `build.gradle` file. ``` -implementation 'com.cloudinary:kotlin-url-gen:1.3.0' +implementation 'com.cloudinary:kotlin-url-gen:1.4.0' ``` **Using Maven**: @@ -43,7 +43,7 @@ Add the Cloudinary Kotlin SDK to the list of dependencies in your `pom.xml` file com.cloudinary kotlin-url-gen - 1.3.0 + 1.4.0 pom ``` diff --git a/gradle.properties b/gradle.properties index 864fdd7..ff9225c 100644 --- a/gradle.properties +++ b/gradle.properties @@ -11,7 +11,7 @@ developerId=cloudinary developerName=Cloudinary developerEmail=info@cloudinary.com # These two properties must use these exact names to be compatible with 'gradle install' plugin. -version=1.3.0 +version=1.4.0 group=com.cloudinary publishGroupId=com.cloudinary android.useAndroidX=true diff --git a/url-gen/src/main/kotlin/com/cloudinary/Cloudinary.kt b/url-gen/src/main/kotlin/com/cloudinary/Cloudinary.kt index af10aa9..bc856d4 100644 --- a/url-gen/src/main/kotlin/com/cloudinary/Cloudinary.kt +++ b/url-gen/src/main/kotlin/com/cloudinary/Cloudinary.kt @@ -62,7 +62,7 @@ class Cloudinary(val config: CloudinaryConfig) { } companion object { - const val SDK_VERSION = "1.3.0" + const val SDK_VERSION = "1.4.0" /** * This flag determines whether to throw an error when a transformation is created with invalid arguments.