Skip to content

Commit

Permalink
Merge pull request #1508 from Adyen/release/5.3.0
Browse files Browse the repository at this point in the history
Preparing release 5.3.0
  • Loading branch information
jreij authored Mar 12, 2024
2 parents 45fe2ff + a1eecad commit 5155dd9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.2.0"
implementation "com.adyen.checkout:drop-in-compose:5.3.0"
```
For the Credit Card component:
```groovy
implementation "com.adyen.checkout:card:5.2.0"
implementation "com.adyen.checkout:components-compose:5.2.0"
implementation "com.adyen.checkout:card:5.3.0"
implementation "com.adyen.checkout:components-compose:5.3.0"
```

### Without Jetpack Compose

For Drop-in:
```groovy
implementation "com.adyen.checkout:drop-in:5.2.0"
implementation "com.adyen.checkout:drop-in:5.3.0"
```
For the Credit Card component:
```groovy
implementation "com.adyen.checkout:card:5.2.0"
implementation "com.adyen.checkout:card:5.3.0"
```

The library is available on [Maven Central][mavenRepo].
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ internal class AnalyticsMapperTest {
)

val expected = AnalyticsSetupRequest(
version = "5.2.0",
version = "5.3.0",
channel = "android",
platform = "android",
locale = "en_US",
Expand Down
2 changes: 1 addition & 1 deletion dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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.2.0"
version_name = "5.3.0"

// Build Script
android_gradle_plugin_version = '8.2.0'
Expand Down
2 changes: 1 addition & 1 deletion example-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ dependencies {
// Checkout
implementation project(':drop-in')
implementation project(':components-compose')
// implementation "com.adyen.checkout:drop-in:5.2.0"
// implementation "com.adyen.checkout:drop-in:5.3.0"

// Dependencies
implementation libraries.kotlinCoroutines
Expand Down

0 comments on commit 5155dd9

Please sign in to comment.