diff --git a/README.md b/README.md index b6df76b2bc..d2223b2732 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.0" +implementation "com.adyen.checkout:drop-in-compose:5.7.1" ``` For the Credit Card component: ```groovy -implementation "com.adyen.checkout:card:5.7.0" -implementation "com.adyen.checkout:components-compose:5.7.0" +implementation "com.adyen.checkout:card:5.7.1" +implementation "com.adyen.checkout:components-compose:5.7.1" ``` ### Without Jetpack Compose For Drop-in: ```groovy -implementation "com.adyen.checkout:drop-in:5.7.0" +implementation "com.adyen.checkout:drop-in:5.7.1" ``` For the Credit Card component: ```groovy -implementation "com.adyen.checkout:card:5.7.0" +implementation "com.adyen.checkout:card:5.7.1" ``` The library is available on [Maven Central][mavenRepo]. diff --git a/dependencies.gradle b/dependencies.gradle index dd9a69ff41..b586847db0 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.7.0" + version_name = "5.7.1" // Build Script android_gradle_plugin_version = '8.5.1' diff --git a/example-app/build.gradle b/example-app/build.gradle index 2a4897b808..ddd981b6cc 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.0" -// implementation "com.adyen.checkout:components-compose:5.7.0" +// implementation "com.adyen.checkout:drop-in:5.7.1" +// implementation "com.adyen.checkout:components-compose:5.7.1" // Dependencies implementation libraries.kotlinCoroutines