Skip to content

Commit 5f01305

Browse files
authored
chore: release liveness 1.1.6 and authenticator 1.0.2 (#96)
1 parent 7bf5939 commit 5f01305

File tree

10 files changed

+29
-15
lines changed

10 files changed

+29
-15
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ Amplify UI for Android is an open-source UI library with cloud-connected compone
2222

2323
| Component | Version | Amplify | Material3 |
2424
| --- |---------|---------|-----------|
25-
| Authenticator | 1.0.1 | 2.13.1+ | 1.1.0 |
26-
| Liveness | 1.1.5 | 2.14.5+ | 1.1.0 |
25+
| Authenticator | 1.0.2 | 2.14.5+ | 1.1.2 |
26+
| Liveness | 1.1.6 | 2.14.5+ | 1.1.2 |
2727

2828
## Getting Started
2929

authenticator/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [Release 1.0.2](https://github.com/aws-amplify/amplify-ui-android/releases/tag/release_authenticator_v1.0.2)
2+
3+
## Miscellaneous
4+
* Compose and Material3 version bump https://github.com/aws-amplify/amplify-ui-android/pull/80
5+
6+
[See all changes between 1.0.1 and 1.0.2](https://github.com/aws-amplify/amplify-ui-android/compare/release_authenticator_v1.0.1...release_authenticator_v1.0.2)
7+
18
## [Release 1.0.1](https://github.com/aws-amplify/amplify-ui-android/releases/tag/release_authenticator_v1.0.1)
29

310
### Fixes

authenticator/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Add a dependency on Amplify Authenticator to your application's `dependencies` b
6464

6565
```kotlin
6666
dependencies {
67-
implementation("com.amplifyframework.ui:authenticator:1.0.1")
67+
implementation("com.amplifyframework.ui:authenticator:1.0.2")
6868
}
6969
```
7070

authenticator/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ POM_ARTIFACT_ID=authenticator
1717
POM_NAME=Amplify UI Framework for Android - Authenticator
1818
POM_DESCRIPTION=Amplify UI Framework for Android - Authenticator Plugin
1919
POM_PACKAGING=aar
20-
VERSION_NAME=1.0.1
20+
VERSION_NAME=1.0.2

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[versions]
2-
agp = "8.1.3"
2+
agp = "8.1.4"
33
amplify = "2.14.5"
44
cameraX = "1.2.0"
55
compose = "1.5.4"

liveness/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [Release 1.1.6](https://github.com/aws-amplify/amplify-ui-android/releases/tag/release_liveness_v1.1.6)
2+
3+
## Miscellaneous
4+
* Compose and Material3 version bump https://github.com/aws-amplify/amplify-ui-android/pull/80
5+
6+
[See all changes between 1.1.5 and 1.1.6](https://github.com/aws-amplify/amplify-ui-android/compare/release_liveness_v1.1.5...release_liveness_v1.1.6)
7+
18
## [Release 1.1.5](https://github.com/aws-amplify/amplify-ui-android/releases/tag/release_liveness_v1.1.5)
29

310
## Miscellaneous

liveness/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ POM_ARTIFACT_ID=liveness
1717
POM_NAME=Amplify UI Framework for Android - Liveness
1818
POM_DESCRIPTION=Amplify UI Framework for Android - Liveness Plugin
1919
POM_PACKAGING=aar
20-
VERSION_NAME=1.1.5
20+
VERSION_NAME=1.1.6

samples/authenticator/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
buildscript {
22
ext {
3-
compose_version = '1.3.3'
4-
authenticatorVersion = '1.0.1'
3+
compose_version = '1.5.4'
4+
authenticatorVersion = '1.0.2'
55
}
66
repositories {
77
google()
88
}
99
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
1010
plugins {
11-
id 'com.android.application' version '8.1.2' apply false
12-
id 'com.android.library' version '8.1.2' apply false
11+
id 'com.android.application' version '8.1.4' apply false
12+
id 'com.android.library' version '8.1.4' apply false
1313
id 'org.jetbrains.kotlin.android' version '1.8.10' apply false
1414
}

samples/liveness/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ android {
1515
defaultConfig {
1616
applicationId "com.amplifyframework.ui.sample.liveness"
1717
minSdk 24
18-
targetSdk 33
18+
targetSdk 34
1919
versionCode 1
2020
versionName "1"
2121
buildConfigField "boolean", "SHOW_DEBUG_UI", "false"

samples/liveness/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
buildscript {
22
ext {
3-
compose_version = '1.3.3'
3+
compose_version = '1.5.4'
44
amplifyVersion = '2.14.5'
5-
amplifyUIVersion = '1.1.5'
5+
amplifyUIVersion = '1.1.6'
66
}
77
repositories {
88
google()
99
}
1010
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
1111
plugins {
12-
id 'com.android.application' version '8.1.3' apply false
13-
id 'com.android.library' version '8.1.3' apply false
12+
id 'com.android.application' version '8.1.4' apply false
13+
id 'com.android.library' version '8.1.4' apply false
1414
id 'org.jetbrains.kotlin.android' version '1.8.10' apply false
1515
id 'org.jetbrains.kotlin.plugin.serialization' version '1.8.10' apply false
1616
}

0 commit comments

Comments
 (0)