Bump authenticatorbridge to 1.0.1 (#5230)

This commit is contained in:
Patrick Honkonen
2025-05-21 12:37:41 -04:00
committed by GitHub
parent 1acc1a87a6
commit d1a8cbf59f
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(":annotation"))
implementation(project(":core"))

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(":annotation"))
implementation(project(":core"))

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)