Skip to content

Commit

Permalink
Version 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adimiz1 committed May 11, 2022
1 parent edde9ef commit 2c9e124
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
==================

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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**:
Expand All @@ -43,7 +43,7 @@ Add the Cloudinary Kotlin SDK to the list of dependencies in your `pom.xml` file
<dependency>
<groupId>com.cloudinary</groupId>
<artifactId>kotlin-url-gen</artifactId>
<version>1.3.0</version>
<version>1.4.0</version>
<type>pom</type>
</dependency>
```
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ developerId=cloudinary
developerName=Cloudinary
developerEmail=[email protected]
# 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
Expand Down
2 changes: 1 addition & 1 deletion url-gen/src/main/kotlin/com/cloudinary/Cloudinary.kt
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 2c9e124

Please sign in to comment.