Skip to content

Commit

Permalink
Merge pull request #1382 from Adyen/release/5.0.1
Browse files Browse the repository at this point in the history
Preparing release 5.0.1
  • Loading branch information
OscarSpruit authored Nov 10, 2023
2 parents 67a8757 + 1aa78c4 commit bb39b78
Show file tree
Hide file tree
Showing 5 changed files with 17 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.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].
Expand Down
9 changes: 9 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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** |
Original file line number Diff line number Diff line change
Expand Up @@ -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",
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.0.0"
version_name = "5.0.1"

// Build Script
android_gradle_plugin_version = '8.1.1'
Expand Down
2 changes: 1 addition & 1 deletion example-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit bb39b78

Please sign in to comment.