Skip to content

Commit 3bb89a4

Browse files
authored
release: Authenticator 1.0.0 (#42)
1 parent 8601694 commit 3bb89a4

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

README.md

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

1616
| Component | Summary | Latest Version | Docs | Sample |
1717
| --- | --- | --- | --- | --- |
18-
| [Authenticator](authenticator) | Amplify Authenticator provides a complete drop-in implementation of an authentication flow for your application using [Amplify Authentication](https://docs.amplify.aws/lib/auth/getting-started/q/platform/android/). | [dev-preview.2](https://github.com/aws-amplify/amplify-ui-android/releases/tag/release_authenticator_v1.0.0-dev-preview.2) | [Docs](https://ui.docs.amplify.aws/android/connected-components/authenticator) | [Sample](samples/authenticator/) |
18+
| [Authenticator](authenticator) | Amplify Authenticator provides a complete drop-in implementation of an authentication flow for your application using [Amplify Authentication](https://docs.amplify.aws/lib/auth/getting-started/q/platform/android/). | [1.0.0](https://github.com/aws-amplify/amplify-ui-android/releases/tag/release_authenticator_v1.0.0) | [Docs](https://ui.docs.amplify.aws/android/connected-components/authenticator) | [Sample](samples/authenticator/) |
1919
| [Face Liveness](liveness) | Amplify FaceLivenessDetector provides a UI component for [Amazon Rekognition Face Liveness](https://aws.amazon.com/rekognition/face-liveness/) feature that helps developers verify that only real users, not bad actors using spoofs, can access your services. | [1.0.0](https://github.com/aws-amplify/amplify-ui-android/releases/tag/release_liveness_v1.0.0) | [Docs](https://ui.docs.amplify.aws/android/connected-components/liveness) | [Sample](samples/liveness/) |
2020

2121
## Supported Versions
2222

2323
| Component | Version | Amplify | Material3 |
2424
| --- | --- | --- | --- |
25-
| Authenticator | dev-preview.0 | 2.7.1+ | 1.0.1 |
26-
| | dev-preview.1 | 2.8.4+ | 1.1.0 |
25+
| Authenticator | 1.0.0 | 2.8.4+ | 1.1.0 |
2726
| Liveness | 1.0.0 | 2.7.0+ | 1.0.1+ |
2827

2928
## Getting Started

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.0](https://github.com/aws-amplify/amplify-ui-android/releases/tag/release_authenticator_v1.0.0)
2+
3+
### Fixes
4+
- **authenticator:** Rename AuthenticatorMessage.Information to AuthenticatorMessage.Info ([#41](https://github.com/aws-amplify/amplify-ui-android/issues/41))
5+
6+
[See all changes between 1.0.0-dev-preview.2 and 1.0.0](https://github.com/aws-amplify/amplify-ui-android/compare/release_authenticator_v1.0.0-dev-preview.2...release_authenticator_v1.0.0)
7+
18
## [Release 1.0.0-dev-preview.2](https://github.com/aws-amplify/amplify-ui-android/releases/tag/release_authenticator_v1.0.0-dev-preview.2)
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.0-dev-preview.2")
67+
implementation("com.amplifyframework.ui:authenticator:1.0.0")
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.0-dev-preview.2
20+
VERSION_NAME=1.0.0

samples/authenticator/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
buildscript {
22
ext {
33
compose_version = '1.3.3'
4-
authenticatorVersion = '1.0.0-dev-preview.2'
4+
authenticatorVersion = '1.0.0'
55
}
66
repositories {
77
google()

0 commit comments

Comments
 (0)