Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package com.stripe.android.stripe3ds2

internal object SdkVersion {
internal const val VERSION_NAME = "22.2.0"
internal const val VERSION_NAME = "22.3.0"
}
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## XX.XX.XX - 20XX-XX-XX

## 22.3.0 - 2025-12-01

### Payment Method Messaging
* [Added] Payment Method Messaging Element is now available in public preview.

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Add `stripe-android` to your `build.gradle` dependencies.

```
dependencies {
implementation 'com.stripe:stripe-android:22.2.0'
implementation 'com.stripe:stripe-android:22.3.0'
}
```

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
22.2.0
22.3.0
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ org.gradle.configuration-cache=true
org.gradle.configuration-cache.problems=warn

# Update StripeSdkVersion.VERSION_NAME when publishing a new release
VERSION_NAME=22.2.0
VERSION_NAME=22.3.0
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ package com.stripe.android.core.version
*
*/
object StripeSdkVersion {
const val VERSION_NAME = "22.2.0"
const val VERSION_NAME = "22.3.0"
const val VERSION: String = "AndroidBindings/$VERSION_NAME"
}
Loading