From 53f08f1867aa3d78a778957952d342ad2ac5445b Mon Sep 17 00:00:00 2001 From: Oscar Spruit Date: Wed, 8 Nov 2023 12:59:44 +0100 Subject: [PATCH 1/2] Replace version number --- README.md | 10 +++++----- .../core/internal/data/api/AnalyticsMapperTest.kt | 2 +- dependencies.gradle | 2 +- example-app/build.gradle | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 7c221a98bb..ce91bc2ff9 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.0.0" +implementation "com.adyen.checkout:drop-in-compose:5.0.1" ``` For the Credit Card component: ```groovy -implementation "com.adyen.checkout:card:5.0.0" -implementation "com.adyen.checkout:components-compose:5.0.0" +implementation "com.adyen.checkout:card:5.0.1" +implementation "com.adyen.checkout:components-compose:5.0.1" ``` ### Without Jetpack Compose For Drop-in: ```groovy -implementation "com.adyen.checkout:drop-in:5.0.0" +implementation "com.adyen.checkout:drop-in:5.0.1" ``` For the Credit Card component: ```groovy -implementation "com.adyen.checkout:card:5.0.0" +implementation "com.adyen.checkout:card:5.0.1" ``` The library is available on [Maven Central][mavenRepo]. diff --git a/components-core/src/test/java/com/adyen/checkout/components/core/internal/data/api/AnalyticsMapperTest.kt b/components-core/src/test/java/com/adyen/checkout/components/core/internal/data/api/AnalyticsMapperTest.kt index e5ec977831..2a9670e933 100644 --- a/components-core/src/test/java/com/adyen/checkout/components/core/internal/data/api/AnalyticsMapperTest.kt +++ b/components-core/src/test/java/com/adyen/checkout/components/core/internal/data/api/AnalyticsMapperTest.kt @@ -110,7 +110,7 @@ internal class AnalyticsMapperTest { ) val expected = AnalyticsSetupRequest( - version = "5.0.0", + version = "5.0.1", channel = "android", platform = "android", locale = "en_US", diff --git a/dependencies.gradle b/dependencies.gradle index 14503f6cd9..a8ac4251d1 100644 --- a/dependencies.gradle +++ b/dependencies.gradle @@ -16,7 +16,7 @@ ext { // just for example app, don't 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.0.0" + version_name = "5.0.1" // Build Script android_gradle_plugin_version = '8.1.1' diff --git a/example-app/build.gradle b/example-app/build.gradle index 8274070c5c..c5c8a69457 100644 --- a/example-app/build.gradle +++ b/example-app/build.gradle @@ -62,7 +62,7 @@ android { dependencies { // Checkout implementation project(':drop-in') -// implementation "com.adyen.checkout:drop-in:5.0.0" +// implementation "com.adyen.checkout:drop-in:5.0.1" // Dependencies implementation libraries.kotlinCoroutines From 1aa78c474d7a16e2bd7c5da4be383f9d82c30aee Mon Sep 17 00:00:00 2001 From: Oscar Spruit Date: Wed, 8 Nov 2023 13:11:26 +0100 Subject: [PATCH 2/2] Update release notes --- RELEASE_NOTES.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 4ebae3c15c..5ba0f46de0 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -10,3 +10,12 @@ ## Fixed - `@RestrictTo` annotations no longer cause false errors with Android Studio and Lint. +- Using the layout inspector or having view attribute inspection enabled in the developer options no longer causes a crash when viewing a payment method. +- Implementing the `:action` module no longer gives a duplicate class error caused by a duplicate namespace. +- For Drop-in, dismissing the gift card payment method no longer prevents further interaction. + +## Changed +- Dependency versions: + | Name | Version | + |--------------------------------------------------------------------------------------------------------|-------------------------------| + | [AndroidX Compose BoM](https://developer.android.com/jetpack/compose/bom/bom-mapping) | **2023.09.01** |