From cc3f7ec103d89f12c1b12f2b95472e59ea4531f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sven=20N=C3=A4hler?= Date: Fri, 8 Mar 2024 12:38:29 +0100 Subject: [PATCH] Bump version --- CHANGELOG.md | 17 ++++++++++++++++- app/build.gradle | 2 +- build.gradle | 2 +- 3 files changed, 18 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 38f0b61..c7949a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,20 @@ # PhotoEditor SDK - Changelog +## v10.9.0 + +### Fixed +* [KSP-PLUGIN] Event-System is not working correctly in some cases, when using KSP Plugin. +* [GRADLE-PLUGIN] KSP Plugin does not work on newer Gradle versions. +* [GRADLE-PLUGIN] KAPT and KSP Plugin detection is not working correctly. +* Images and icons occasionally fail to load. +* Performance degradation during the loading of numerous images. + +### Improved +* Better runtime and build-time error messages for configuration issues. +* New Syntax for IMG.LY plugin configuration. Please use `IMGLY.configure { }` instead of `imglyConfig { }`, you will receive errors when you are using the new syntax the wrong way. + +### Breaking Changes +* 🚨 [GRADLE-PLUGIN] Significant modifications have been implemented that will affect a minor segment of our customer base. Should your build process encounter errors, it is recommended to consult the build output for detailed information. + ## v10.8.2 ### Fixed @@ -24,7 +40,6 @@ * ConfigLoader (React Native, Cordova/Ionic) * `personalVideoClips` is not disabled correctly if the video library is not used. * Kotlin 1.9.0+ compatibility issues, by using KSP. -* Change ### Changed * 🚨 Minimum compileSdkVersion version of the `ui:camera` and `backend:camera` module is now 33 diff --git a/app/build.gradle b/app/build.gradle index 32ace04..2137f1f 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -4,7 +4,7 @@ apply plugin: 'ly.img.android.sdk' apply plugin: 'kotlin-android' apply plugin: 'com.google.devtools.ksp' -imglyConfig { +IMGLY.configure { pesdk { enabled true diff --git a/build.gradle b/build.gradle index 5112ecc..246c112 100644 --- a/build.gradle +++ b/build.gradle @@ -3,7 +3,7 @@ buildscript { ext.kotlin_version = '1.6.21' ext.ksp_version = '1.6.21-1.0.6' - ext.pesdk_version = '10.8.2' // Insert the latest SDK version here. You will find it here https://github.com/imgly/pesdk-android-demo/releases + ext.pesdk_version = '10.9.0' // Insert the latest SDK version here. You will find it here https://github.com/imgly/pesdk-android-demo/releases repositories { google() gradlePluginPortal()