From 582b9ba17ac791c3b0df49a7dcd0ab9b359336cf Mon Sep 17 00:00:00 2001 From: ozgur <6615094+ozgur00@users.noreply.github.com> Date: Tue, 3 Dec 2024 15:47:14 +0100 Subject: [PATCH] Prepare release 5.8.0 --- README.md | 10 +++++----- RELEASE_NOTES.md | 18 ++++++++++++++++-- example-app/build.gradle | 4 ++-- gradle/libs.versions.toml | 2 +- 4 files changed, 24 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0d07faac90..52e08ca74e 100644 --- a/README.md +++ b/README.md @@ -31,23 +31,23 @@ Import the corresponding module in your `build.gradle` file. For Drop-in: ```groovy -implementation "com.adyen.checkout:drop-in-compose:5.7.1" +implementation "com.adyen.checkout:drop-in-compose:5.8.0" ``` For the Credit Card component: ```groovy -implementation "com.adyen.checkout:card:5.7.1" -implementation "com.adyen.checkout:components-compose:5.7.1" +implementation "com.adyen.checkout:card:5.8.0" +implementation "com.adyen.checkout:components-compose:5.8.0" ``` ### Without Jetpack Compose For Drop-in: ```groovy -implementation "com.adyen.checkout:drop-in:5.7.1" +implementation "com.adyen.checkout:drop-in:5.8.0" ``` For the Credit Card component: ```groovy -implementation "com.adyen.checkout:card:5.7.1" +implementation "com.adyen.checkout:card:5.8.0" ``` The library is available on [Maven Central][mavenRepo]. diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 8e5cd7b52d..bf2eb83b92 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -13,5 +13,19 @@ - Pay by Bank US. Payment method type: **paybybank_AIS_DD**. ## Fixed -- For the Address Lookup functionality, when the postal/zip code field is focused and the user presses back, then it no longer crashes. -- For drop-in, in some edge-cases the loading state would be shown on top of an error dialog. This is fixed now. +- For cards, the address lookup functionality no longer crashes if the shopper presses back when the postal code field is in focus. +- For Drop-in, fixed an issue where the error dialog showed loading state in some edge cases. + +## Changed +- Dependency versions: + | Name | Version | + |--------------------------------------------------------------------------------------------------------|-------------------------------| + | [Android Gradle Plugin](https://developer.android.com/build/releases/gradle-plugin#android-gradle-plugin-8.7.1) | **8.7.1** | + | [AndroidX Activity](https://developer.android.com/jetpack/androidx/releases/activity#1.9.3) | **1.9.3** | + | [AndroidX Annotation](https://developer.android.com/jetpack/androidx/releases/annotation#1.9.1) | **1.9.1** | + | [AndroidX Autofill](https://developer.android.com/jetpack/androidx/releases/autofill#1.3.0-beta01) | **1.3.0-beta01** | + | [AndroidX Compose Activity](https://developer.android.com/jetpack/androidx/releases/activity#1.9.3) | **1.9.3** | + | [AndroidX Compose BOM](https://developer.android.com/develop/ui/compose/bom/bom-mapping) | **2024.10.00** | + | [AndroidX Fragment](https://developer.android.com/jetpack/androidx/releases/fragment#1.8.5) | **1.8.5** | + | [AndroidX Lifecycle](https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.6) | **2.8.6** | + | [AndroidX Lifecycle ViewModel Compose](https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.6) | **2.8.6** | diff --git a/example-app/build.gradle b/example-app/build.gradle index 0f5696cc91..c9e78aa51d 100644 --- a/example-app/build.gradle +++ b/example-app/build.gradle @@ -71,8 +71,8 @@ dependencies { // Checkout implementation project(':drop-in') implementation project(':components-compose') -// implementation "com.adyen.checkout:drop-in:5.7.1" -// implementation "com.adyen.checkout:components-compose:5.7.1" +// implementation "com.adyen.checkout:drop-in:5.8.0" +// implementation "com.adyen.checkout:components-compose:5.8.0" // Dependencies implementation libs.bundles.kotlin.coroutines diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index fec10de749..392905cef4 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -7,7 +7,7 @@ min-sdk = "21" # App version, only used for example app, no need to increment version-code = "1" # The version-name format is "major.minor.patch(-(alpha|beta|rc)[0-9]{2}){0,1}" (e.g. 3.0.0, 3.1.1-alpha04 or 3.1.4-rc01 etc). -version-name = "5.7.1" +version-name = "5.8.0" # Build script android-gradle-plugin = "8.7.1"