Skip to content

Commit

Permalink
Updates for 3.9.2 release (#498)
Browse files Browse the repository at this point in the history
  • Loading branch information
usaimbhayat-stripe authored Sep 12, 2024
1 parent e3b4a4a commit 89f86fb
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,18 @@
This document details changes made to the SDK by version. The current status
of each release can be found in the [Support Lifecycle](SUPPORT.md).

## 3.9.2 - 2024-09-13

### Core

- Fix: Prevent a crash during reader connection on devices with marketing names containing non-ASCII characters. Fixes [issue 495](https://github.com/stripe/stripe-terminal-android/issues/495).
- Fix: Prevent a crash that occurs when discovering bluetooth/usb readers and a timeout is set. Fixes [issue 496](https://github.com/stripe/stripe-terminal-android/issues/496).

## 3.9.1 - 2024-09-06

### Handoff

- Fix: handoff transactions do not complete
- Fix: Handoff transactions do not complete

## 3.9.0 - 2024-09-04

Expand Down
2 changes: 1 addition & 1 deletion Example/javaapp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ android {

val androidxLifecycleVersion = "2.6.2"
val retrofitVersion = "2.11.0"
val stripeTerminalVersion = "3.9.0"
val stripeTerminalVersion = "3.9.2"

dependencies {
implementation("com.google.android.material:material:1.11.0")
Expand Down
2 changes: 1 addition & 1 deletion Example/kotlinapp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ tasks.withType<org.jetbrains.kotlin.gradle.tasks.KaptGenerateStubs>().configureE
val androidxLifecycleVersion = "2.6.2"
val kotlinCoroutinesVersion = "1.7.3"
val retrofitVersion = "2.11.0"
val stripeTerminalVersion = "3.9.0"
val stripeTerminalVersion = "3.9.2"

dependencies {
implementation("com.google.android.material:material:1.11.0")
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ To use the Android SDK, add the SDK to the `dependencies` block of your `build.g

```groovy
dependencies {
implementation "com.stripe:stripeterminal:3.9.0"
implementation "com.stripe:stripeterminal:3.9.2"
}
```

Expand Down Expand Up @@ -103,8 +103,8 @@ your `build.gradle` file with the following:

```groovy
dependencies {
implementation "com.stripe:stripeterminal-localmobile:3.9.0"
implementation "com.stripe:stripeterminal-core:3.9.0"
implementation "com.stripe:stripeterminal-localmobile:3.9.2"
implementation "com.stripe:stripeterminal-core:3.9.2"
}
```

Expand Down

0 comments on commit 89f86fb

Please sign in to comment.