🍒Bump authenticatorbridge to 1.0.1 (#5248)

This commit is contained in:
Patrick Honkonen 2025-05-22 13:58:58 -04:00 committed by GitHub
parent dc3ee85d16
commit e738b458ef
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 11 additions and 4 deletions

View File

@ -211,7 +211,7 @@ dependencies {
add("standardImplementation", dependencyNotation)
}
implementation(files("libs/authenticatorbridge-1.0.0-release.aar"))
implementation(files("libs/authenticatorbridge-1.0.1-release.aar"))
implementation(project(":core"))
implementation(project(":data"))

View File

@ -149,7 +149,7 @@ kotlin {
dependencies {
implementation(files("libs/authenticatorbridge-1.0.0-release.aar"))
implementation(files("libs/authenticatorbridge-1.0.1-release.aar"))
implementation(project(":core"))
implementation(project(":data"))

View File

@ -7,6 +7,13 @@ v1.1.0 (pending)
### Bug Fixes
v1.0.1
--------
### Bug Fixes
- Correctly set the `AccountSyncState` to `SyncNotEnabled` after binding to the service if the previous state was `AppNotInstalled`.
v1.0.0
--------
Initial release.
Initial release.

View File

@ -1,7 +1,7 @@
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
// For more info on versioning, see the README.
val version = "1.0.0"
val version = "1.0.1"
plugins {
alias(libs.plugins.android.library)