diff --git a/CHANGELOG.md b/CHANGELOG.md index 781e0adce4..ebc818ccda 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [Release 1.36.3](https://github.com/aws-amplify/amplify-android/releases/tag/release_v1.36.3) + +### Bug Fixes +- **api:** catch all exceptions when making rest request (#1827) + +[See all changes between 1.36.2 and 1.36.3](https://github.com/aws-amplify/amplify-android/compare/release_v1.36.2...release_v1.36.3) + ## [Release 1.36.2](https://github.com/aws-amplify/amplify-android/releases/tag/release_v1.36.2) ### Miscellaneous diff --git a/README.md b/README.md index 5adcdf08e0..be20b0c35b 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.36.2' - implementation 'com.amplifyframework:aws-api:1.36.2' - implementation 'com.amplifyframework:aws-auth-cognito:1.36.2' - implementation 'com.amplifyframework:aws-datastore:1.36.2' - implementation 'com.amplifyframework:aws-predictions:1.36.2' - implementation 'com.amplifyframework:aws-storage-s3:1.36.2' + implementation 'com.amplifyframework:aws-analytics-pinpoint:1.36.3' + implementation 'com.amplifyframework:aws-api:1.36.3' + implementation 'com.amplifyframework:aws-auth-cognito:1.36.3' + implementation 'com.amplifyframework:aws-datastore:1.36.3' + implementation 'com.amplifyframework:aws-predictions:1.36.3' + implementation 'com.amplifyframework:aws-storage-s3:1.36.3' } ``` diff --git a/core-kotlin/CHANGELOG.md b/core-kotlin/CHANGELOG.md index 890d37ce65..593fe59b2b 100644 --- a/core-kotlin/CHANGELOG.md +++ b/core-kotlin/CHANGELOG.md @@ -1,3 +1,10 @@ +## [Release 0.20.3](https://github.com/aws-amplify/amplify-android/releases/tag/release-kotlin_v0.20.3) + +### Bug Fixes +- **api:** catch all exceptions when making rest request (#1827) + +[See all changes between 0.20.2 and 0.20.3](https://github.com/aws-amplify/amplify-android/compare/release-kotlin_v0.20.2...release-kotlin_v0.20.3) + ## [Release 0.20.2](https://github.com/aws-amplify/amplify-android/releases/tag/release-kotlin_v0.20.2) ### Miscellaneous diff --git a/core-kotlin/gradle.properties b/core-kotlin/gradle.properties index d8870caca0..7681654de8 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.20.2 +VERSION_NAME=0.20.3 diff --git a/gradle.properties b/gradle.properties index 6402debdf4..11c1e0d033 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.36.2 +VERSION_NAME=1.36.3 POM_GROUP=com.amplifyframework POM_URL=https://github.com/aws-amplify/amplify-android diff --git a/rxbindings/README.md b/rxbindings/README.md index f9e606aedc..4a9dd07bc3 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.36.2' + implementation 'com.amplifyframework:rxbindings:1.36.3' } ```