From 12d14ad94b6de69f386d36b0c9e95e3ba51f84c9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 25 Jul 2024 10:16:10 -0500 Subject: [PATCH] release: Amplify Android 2.21.0 (#2879) Co-authored-by: amplify-android-dev+ghops --- CHANGELOG.md | 10 ++++++++++ README.md | 16 ++++++++-------- gradle.properties | 2 +- rxbindings/README.md | 2 +- 4 files changed, 20 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 17cb07db5..60e346206 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## [Release 2.21.0](https://github.com/aws-amplify/amplify-android/releases/tag/release_v2.21.0) + +### Features +- **storage:** add delimiter support ([#2871](https://github.com/aws-amplify/amplify-android/issues/2871)) + +### Bug Fixes +- **storage:** Remove unused foreground service permission ([#2877](https://github.com/aws-amplify/amplify-android/issues/2877)) + +[See all changes between 2.20.0 and 2.21.0](https://github.com/aws-amplify/amplify-android/compare/release_v2.20.0...release_v2.21.0) + ## [Release 2.20.0](https://github.com/aws-amplify/amplify-android/releases/tag/release_v2.20.0) ### Features diff --git a/README.md b/README.md index 587cf71ca..f0ef8c631 100644 --- a/README.md +++ b/README.md @@ -71,14 +71,14 @@ dependencies section: ```groovy dependencies { // Only specify modules that provide functionality your app will use - implementation 'com.amplifyframework:aws-analytics-pinpoint:2.20.0' - implementation 'com.amplifyframework:aws-api:2.20.0' - implementation 'com.amplifyframework:aws-auth-cognito:2.20.0' - implementation 'com.amplifyframework:aws-datastore:2.20.0' - implementation 'com.amplifyframework:aws-predictions:2.20.0' - implementation 'com.amplifyframework:aws-storage-s3:2.20.0' - implementation 'com.amplifyframework:aws-geo-location:2.20.0' - implementation 'com.amplifyframework:aws-push-notifications-pinpoint:2.20.0' + implementation 'com.amplifyframework:aws-analytics-pinpoint:2.21.0' + implementation 'com.amplifyframework:aws-api:2.21.0' + implementation 'com.amplifyframework:aws-auth-cognito:2.21.0' + implementation 'com.amplifyframework:aws-datastore:2.21.0' + implementation 'com.amplifyframework:aws-predictions:2.21.0' + implementation 'com.amplifyframework:aws-storage-s3:2.21.0' + implementation 'com.amplifyframework:aws-geo-location:2.21.0' + implementation 'com.amplifyframework:aws-push-notifications-pinpoint:2.21.0' } ``` diff --git a/gradle.properties b/gradle.properties index 0fb450398..3e6d547f7 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=2.20.0 +VERSION_NAME=2.21.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 2e5dba3bb..01c135cb1 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:2.20.0' + implementation 'com.amplifyframework:rxbindings:2.21.0' } ```