Skip to content

Commit 8f9585e

Browse files
Bump authenticatorbridge sdk version to 1.0.0 (#4221)
1 parent e5e0464 commit 8f9585e

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

app/build.gradle.kts

+1-2
Original file line numberDiff line numberDiff line change
@@ -162,8 +162,7 @@ dependencies {
162162
add("standardImplementation", dependencyNotation)
163163
}
164164

165-
// TODO: this should use a versioned AAR instead of referencing a local AAR BITAU-94
166-
implementation(files("libs/authenticatorbridge-0.1.0-SNAPSHOT-release.aar"))
165+
implementation(files("libs/authenticatorbridge-1.0.0-release.aar"))
167166

168167
implementation(libs.androidx.activity.compose)
169168
implementation(libs.androidx.appcompat)

authenticatorbridge/CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
1-
v0.1.0 (pending)
1+
v1.1.0 (pending)
22
--------
33

44
### API Changes
55

66
### Breaking Changes
77

88
### Bug Fixes
9+
10+
v1.0.0
11+
--------
12+
Initial release.

authenticatorbridge/build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
22

33
// For more info on versioning, see the README.
4-
val version = "0.1.0"
4+
val version = "1.0.0"
55

66
plugins {
77
alias(libs.plugins.android.library)
@@ -46,7 +46,7 @@ android {
4646
outputs
4747
.map { it as com.android.build.gradle.internal.api.BaseVariantOutputImpl }
4848
.forEach { output ->
49-
val outputFileName = "authenticatorbridge-${version}-SNAPSHOT-${variant.baseName}.aar"
49+
val outputFileName = "authenticatorbridge-${version}-${variant.baseName}.aar"
5050
output.outputFileName = outputFileName
5151
}
5252
}

0 commit comments

Comments
 (0)