diff --git a/app/build.gradle.kts b/app/build.gradle.kts index c31e52086..37d2a0eec 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -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) diff --git a/app/libs/authenticatorbridge-0.1.0-SNAPSHOT-release.aar b/app/libs/authenticatorbridge-1.0.0-release.aar similarity index 63% rename from app/libs/authenticatorbridge-0.1.0-SNAPSHOT-release.aar rename to app/libs/authenticatorbridge-1.0.0-release.aar index defcb5273..58a7c494b 100644 Binary files a/app/libs/authenticatorbridge-0.1.0-SNAPSHOT-release.aar and b/app/libs/authenticatorbridge-1.0.0-release.aar differ diff --git a/authenticatorbridge/CHANGELOG.md b/authenticatorbridge/CHANGELOG.md index 62a9ddd44..fdca1b87c 100644 --- a/authenticatorbridge/CHANGELOG.md +++ b/authenticatorbridge/CHANGELOG.md @@ -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. \ No newline at end of file diff --git a/authenticatorbridge/build.gradle.kts b/authenticatorbridge/build.gradle.kts index cadfb31db..cf4074b7c 100644 --- a/authenticatorbridge/build.gradle.kts +++ b/authenticatorbridge/build.gradle.kts @@ -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 } }