diff --git a/CHANGELOG.md b/CHANGELOG.md index 863c30f6..95a38e91 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,17 @@ # PhotoEditor SDK - Changelog +## v6.0.2 + +### Fixed +* Crash with some png color formats. +* Plugin does not support `kotlin-kapt`. +* Preview quality is bad on some pictures. +* Latest text state (Colors and Font) is not restored. + ## v6.0.1 ### Changed -* You can leave `pesdkVersion` from the `pesdkConfig` in you gradle config, the default value is now the plugin version. +* You can remove `pesdkVersion` from the `pesdkConfig` in you gradle config, the default value is now the plugin version. ### Fixed * Missing ForceCrop option. diff --git a/build.gradle b/build.gradle index f9bcce66..7fa5dec4 100644 --- a/build.gradle +++ b/build.gradle @@ -2,7 +2,7 @@ buildscript { ext.kotlin_version = '1.2.51' - ext.pesdk_version = '6.0.1' // Insert the latest SDK version here. You will find it here https://github.com/imgly/pesdk-android-demo/releases + ext.pesdk_version = '6.0.2' // Insert the latest SDK version here. You will find it here https://github.com/imgly/pesdk-android-demo/releases repositories { google() jcenter() @@ -20,9 +20,7 @@ buildscript { allprojects { repositories { - google() jcenter() - maven { url 'https://artifactory.9elements.com/artifactory/imgly' } } }