diff --git a/CHANGELOG.md b/CHANGELOG.md index f5782af..7ad760d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +1.1.0 / 2022-05-15 +================== + +* Support strength qualifier as expression +* Support AudioFrequency original value +* Deprecate offsetX and offsetY +* Support x and y in resize +* Support textColor as expression +* Deprecate wavefrom from Effect +* Add waveform to VideoEdit +* Support startOffset and endOffset as expression + 1.0.0 / 2022-05-12 ================== diff --git a/README.md b/README.md index 3dce385..5e591cc 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,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-transformation-builder-sdk:1.0.0' +implementation 'com.cloudinary:kotlin-transformation-builder-sdk:1.1.0' ``` **Using Maven**: @@ -41,7 +41,7 @@ Add the Cloudinary Kotlin SDK to the list of dependencies in your `pom.xml` file com.cloudinary kotlin-transformation-builder-sdk - 1.0.0 + 1.1.0 pom ``` diff --git a/gradle.properties b/gradle.properties index ee87ed4..c3611ff 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.0.0 +version=1.1.0 group=com.cloudinary publishGroupId=com.cloudinary android.useAndroidX=true diff --git a/transformation-builder/src/main/kotlin/Version.kt b/transformation-builder/src/main/kotlin/Version.kt index bfbc6bb..10d8a61 100644 --- a/transformation-builder/src/main/kotlin/Version.kt +++ b/transformation-builder/src/main/kotlin/Version.kt @@ -1,5 +1,5 @@ class Version { companion object { - const val SDK_VERSION = "1.0.0" + const val SDK_VERSION = "1.1.0" } } \ No newline at end of file