Bump authenticatorbridge sdk version to 1.0.0 (#4221)

This commit is contained in:
Andrew Haisting 2024-11-04 08:24:36 -06:00 committed by GitHub
parent e5e0464929
commit 8f9585e4bc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 8 additions and 5 deletions

View file

@ -162,8 +162,7 @@ dependencies {
add("standardImplementation", dependencyNotation)
}
// TODO: this should use a versioned AAR instead of referencing a local AAR BITAU-94
implementation(files("libs/authenticatorbridge-0.1.0-SNAPSHOT-release.aar"))
implementation(files("libs/authenticatorbridge-1.0.0-release.aar"))
implementation(libs.androidx.activity.compose)
implementation(libs.androidx.appcompat)

View file

@ -1,4 +1,4 @@
v0.1.0 (pending)
v1.1.0 (pending)
--------
### API Changes
@ -6,3 +6,7 @@ v0.1.0 (pending)
### Breaking Changes
### Bug Fixes
v1.0.0
--------
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 = "0.1.0"
val version = "1.0.0"
plugins {
alias(libs.plugins.android.library)
@ -46,7 +46,7 @@ android {
outputs
.map { it as com.android.build.gradle.internal.api.BaseVariantOutputImpl }
.forEach { output ->
val outputFileName = "authenticatorbridge-${version}-SNAPSHOT-${variant.baseName}.aar"
val outputFileName = "authenticatorbridge-${version}-${variant.baseName}.aar"
output.outputFileName = outputFileName
}
}