From bbb05e7bca253a5a212984bd19206322feeb7c9a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 10 Sep 2021 14:45:29 -0700 Subject: [PATCH] release: Amplify Android 1.26.0 (#1492) Co-authored-by: amplify-android-dev+ghops --- CHANGELOG.md | 11 +++++++++++ README.md | 12 ++++++------ core-kotlin/CHANGELOG.md | 11 +++++++++++ core-kotlin/gradle.properties | 2 +- gradle.properties | 2 +- rxbindings/README.md | 2 +- 6 files changed, 31 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 77678320a8..7cd5ac018a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## [Release 1.26.0](https://github.com/aws-amplify/amplify-android/releases/tag/release_v1.26.0) + +### Features +- **datastore:** Add non-model type support for amplify-flutter (#1459) + +### Bug Fixes +- **auth:** check for correct exception type when signing out globally (#1473) +- **auth:** null-check username when getting current user (#1490) + +[See all changes between 1.25.1 and 1.26.0](https://github.com/aws-amplify/amplify-android/compare/release_v1.25.1...release_v1.26.0) + ## [Release 1.25.1](https://github.com/aws-amplify/amplify-android/releases/tag/release_v1.25.1) ### Miscellaneous diff --git a/README.md b/README.md index dd1aaa8865..ca2e78da51 100644 --- a/README.md +++ b/README.md @@ -52,12 +52,12 @@ dependencies section: ```groovy dependencies { // Only specify modules that provide functionality your app will use - implementation 'com.amplifyframework:aws-analytics-pinpoint:1.25.1' - implementation 'com.amplifyframework:aws-api:1.25.1' - implementation 'com.amplifyframework:aws-auth-cognito:1.25.1' - implementation 'com.amplifyframework:aws-datastore:1.25.1' - implementation 'com.amplifyframework:aws-predictions:1.25.1' - implementation 'com.amplifyframework:aws-storage-s3:1.25.1' + implementation 'com.amplifyframework:aws-analytics-pinpoint:1.26.0' + implementation 'com.amplifyframework:aws-api:1.26.0' + implementation 'com.amplifyframework:aws-auth-cognito:1.26.0' + implementation 'com.amplifyframework:aws-datastore:1.26.0' + implementation 'com.amplifyframework:aws-predictions:1.26.0' + implementation 'com.amplifyframework:aws-storage-s3:1.26.0' } ``` diff --git a/core-kotlin/CHANGELOG.md b/core-kotlin/CHANGELOG.md index de4e91e068..b7df919d05 100644 --- a/core-kotlin/CHANGELOG.md +++ b/core-kotlin/CHANGELOG.md @@ -1,3 +1,14 @@ +## [Release 0.10.0](https://github.com/aws-amplify/amplify-android/releases/tag/release-kotlin_v0.10.0) + +### Features +- **datastore:** Add non-model type support for amplify-flutter (#1459) + +### Bug Fixes +- **auth:** check for correct exception type when signing out globally (#1473) +- **auth:** null-check username when getting current user (#1490) + +[See all changes between 0.9.1 and 0.10.0](https://github.com/aws-amplify/amplify-android/compare/release-kotlin_v0.9.1...release-kotlin_v0.10.0) + ## [Release 0.9.1](https://github.com/aws-amplify/amplify-android/releases/tag/release-kotlin_v0.9.1) ### Miscellaneous diff --git a/core-kotlin/gradle.properties b/core-kotlin/gradle.properties index 567eecd1d2..fb9b312c6e 100644 --- a/core-kotlin/gradle.properties +++ b/core-kotlin/gradle.properties @@ -3,4 +3,4 @@ POM_NAME=Amplify Framework for Android - Kotlin facade for Core library POM_DESCRIPTION=Amplify Framework for Android - Kotlin facade for Core library POM_PACKAGING=aar -VERSION_NAME=0.9.1 +VERSION_NAME=0.10.0 diff --git a/gradle.properties b/gradle.properties index cac7c8b1cc..cffab9c7a8 100644 --- a/gradle.properties +++ b/gradle.properties @@ -12,7 +12,7 @@ org.gradle.jvmargs=-Xmx4g # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects org.gradle.parallel=true -VERSION_NAME=1.25.1 +VERSION_NAME=1.26.0 POM_GROUP=com.amplifyframework POM_URL=https://github.com/aws-amplify/amplify-android diff --git a/rxbindings/README.md b/rxbindings/README.md index 5a005d92f1..b8085efbdd 100644 --- a/rxbindings/README.md +++ b/rxbindings/README.md @@ -24,7 +24,7 @@ library. In your module's `build.gradle`: ```gradle dependencies { // Add this line. - implementation 'com.amplifyframework:rxbindings:1.25.1' + implementation 'com.amplifyframework:rxbindings:1.26.0' } ```