diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b17f29b0b1..ab3c09b82dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## XX.XX.XX - 20XX-XX-XX +## 21.3.0 - 2024-12-23 + ### Payments * [ADDED][9753](https://github.com/stripe/stripe-android/pull/9753) Added support for Crypto to API bindings. * [CHANGED][9804](https://github.com/stripe/stripe-android/pull/9804) Changed the edit and remove saved payment method flow so that tapping 'Edit' displays an icon that leads to a new update payment method screen that displays payment method details for card (last 4 digits of card number, cvc and expiry date fields), US Bank account (name, email, last 4 digits of bank account), and SEPA debit (name, email, last 4 digits of IBAN). diff --git a/README.md b/README.md index b494ae5ecef..77ebd261493 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ Add `stripe-android` to your `build.gradle` dependencies. ``` dependencies { - implementation 'com.stripe:stripe-android:21.2.1' + implementation 'com.stripe:stripe-android:21.3.0' } ``` diff --git a/VERSION b/VERSION index e7f93e0d579..54d3ad73646 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -21.2.1 +21.3.0 diff --git a/gradle.properties b/gradle.properties index 0412741b3c9..a8a404a16d6 100644 --- a/gradle.properties +++ b/gradle.properties @@ -20,4 +20,4 @@ android.useAndroidX=true android.experimental.androidTest.numManagedDeviceShards=3 # Update StripeSdkVersion.VERSION_NAME when publishing a new release -VERSION_NAME=21.2.1 +VERSION_NAME=21.3.0 diff --git a/stripe-core/src/main/java/com/stripe/android/core/version/StripeSdkVersion.kt b/stripe-core/src/main/java/com/stripe/android/core/version/StripeSdkVersion.kt index 42590b35d2b..5137fd06d43 100644 --- a/stripe-core/src/main/java/com/stripe/android/core/version/StripeSdkVersion.kt +++ b/stripe-core/src/main/java/com/stripe/android/core/version/StripeSdkVersion.kt @@ -8,6 +8,6 @@ package com.stripe.android.core.version * */ object StripeSdkVersion { - const val VERSION_NAME = "21.2.1" + const val VERSION_NAME = "21.3.0" const val VERSION: String = "AndroidBindings/$VERSION_NAME" }