From a98439d70ad55632756ef15cbd8cf01ee2ce1355 Mon Sep 17 00:00:00 2001 From: tjclawson-stripe <163896025+tjclawson-stripe@users.noreply.github.com> Date: Tue, 19 Nov 2024 17:09:57 -0500 Subject: [PATCH] Prepare for 3ds2sdk 6.2.0 release (#9669) --- 3ds2sdk/CHANGELOG.md | 3 +++ 3ds2sdk/VERSION | 2 +- 3ds2sdk/gradle.properties | 2 +- .../main/kotlin/com/stripe/android/stripe3ds2/SdkVersion.kt | 4 ++-- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/3ds2sdk/CHANGELOG.md b/3ds2sdk/CHANGELOG.md index e51ed093a0a..481db49c225 100644 --- a/3ds2sdk/CHANGELOG.md +++ b/3ds2sdk/CHANGELOG.md @@ -1,5 +1,8 @@ # CHANGELOG +## 6.2.0 - 2024-11-19 +- [#9639](https://github.com/stripe/stripe-android/pull/9639) Update 3DS spec to 2.2 + ## 6.1.8 - 2024-01-25 - [#11535](https://git.corp.stripe.com/stripe-internal/android/pull/11535) Add tink to proguard rules. diff --git a/3ds2sdk/VERSION b/3ds2sdk/VERSION index 1dd8be08f6f..6abaeb2f907 100644 --- a/3ds2sdk/VERSION +++ b/3ds2sdk/VERSION @@ -1 +1 @@ -6.1.8 +6.2.0 diff --git a/3ds2sdk/gradle.properties b/3ds2sdk/gradle.properties index a6804207380..d6b13dcff6e 100644 --- a/3ds2sdk/gradle.properties +++ b/3ds2sdk/gradle.properties @@ -1,3 +1,3 @@ # Update SdkVersion when publishing a new release -VERSION_NAME=6.1.8 +VERSION_NAME=6.2.0 STRIPE_ANDROID_NAMESPACE=com.stripe.android.stripe3ds2 diff --git a/3ds2sdk/src/main/kotlin/com/stripe/android/stripe3ds2/SdkVersion.kt b/3ds2sdk/src/main/kotlin/com/stripe/android/stripe3ds2/SdkVersion.kt index aed781f1986..948762bf28c 100644 --- a/3ds2sdk/src/main/kotlin/com/stripe/android/stripe3ds2/SdkVersion.kt +++ b/3ds2sdk/src/main/kotlin/com/stripe/android/stripe3ds2/SdkVersion.kt @@ -2,6 +2,6 @@ package com.stripe.android.stripe3ds2 internal object SdkVersion { // update these values when publishing a new release - internal const val VERSION_NAME = "6.1.8" - internal const val VERSION_CODE = 25 + internal const val VERSION_NAME = "6.2.0" + internal const val VERSION_CODE = 26 }