From 582931eda371a2dc6e8331e2050568c5dc8d22d2 Mon Sep 17 00:00:00 2001 From: jreij Date: Mon, 30 May 2022 11:18:08 +0200 Subject: [PATCH 1/2] Release: increment version to 4.6.1 --- README.md | 4 ++-- build.gradle | 2 +- example-app/build.gradle | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4b4e571be6..86008e32a2 100644 --- a/README.md +++ b/README.md @@ -29,11 +29,11 @@ If you are upgrading from 3.x.x to a current release, check out our [migration g Import the Component module for the Payment Method you want to use by adding it to your `build.gradle` file. For example, for the Drop-in solution you should add: ```groovy -implementation "com.adyen.checkout:drop-in:4.6.0" +implementation "com.adyen.checkout:drop-in:4.6.1" ``` For a Credit Card component you should add: ```groovy -implementation "com.adyen.checkout:card:4.6.0" +implementation "com.adyen.checkout:card:4.6.1" ``` ### Client Key diff --git a/build.gradle b/build.gradle index a09b7e6934..7f8f0654f1 100644 --- a/build.gradle +++ b/build.gradle @@ -45,7 +45,7 @@ allprojects { // just for example app, don't need to increment ext.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). - ext.version_name = "4.6.0" + ext.version_name = "4.6.1" // Code quality ext.ktlint_version = '0.40.0' diff --git a/example-app/build.gradle b/example-app/build.gradle index 550e2e2a78..0c087a35a3 100644 --- a/example-app/build.gradle +++ b/example-app/build.gradle @@ -72,7 +72,7 @@ android { dependencies { // Checkout implementation project(':drop-in') -// implementation "com.adyen.checkout:drop-in:4.6.0" +// implementation "com.adyen.checkout:drop-in:4.6.1" // Dependencies implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$kotlinx_version" From dcc334507ceaa49e612952be3c02592285e9e13c Mon Sep 17 00:00:00 2001 From: jreij Date: Mon, 30 May 2022 11:21:36 +0200 Subject: [PATCH 2/2] Release: update release notes --- RELEASE_NOTES.md | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 27a023cb16..b78cc6f145 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -8,16 +8,5 @@ [//]: # ( # Deprecated) [//]: # ( - Configurations public constructor are deprecated, please use each Configuration's builder to make a Configuration object) -## Added -- Full billing address form in the card component. Use `CardConfiguration.Builder.setAddressConfiguration` to enable and configure. - -## Deprecated -- `Environment.LIVE`. Replace with one of our explicit live environments, same one as your back end. You can find that value in your Customer Area. -- `CardConfiguration.Builder.setAddressVisibility`. Replace with `CardConfiguration.Builder.setAddressConfiguration`. - ## Fixed -- Soft keyboard navigation (next) not working in some cases in card component. -- Localization issues with standalone components and custom locales. -- Crash in GooglePay availability check. -- Proguard rules. If you had to manually set any Proguard rules related to Drop-in or Components you can remove them. -- Minor visual issues with removing stored payment methods. \ No newline at end of file +- Not being able to import some standalone modules because of `ui-core` accidentally having a dependency to a style in `card`.