Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: Amplify Android 1.37.1 #1881

Merged
merged 2 commits into from
Aug 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## [Release 1.37.1](https://github.com/aws-amplify/amplify-android/releases/tag/release_v1.37.1)

### Bug Fixes
- **storage**: Remove startForegroundService in favor of binding service

### Miscellaneous
- Update AWS SDK for Android version

[See all changes between 1.37.0 and 1.37.1](https://github.com/aws-amplify/amplify-android/compare/release_v1.37.0...release_v1.37.1)

## [Release 1.37.0](https://github.com/aws-amplify/amplify-android/releases/tag/release_v1.37.0)

### Features
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.37.0'
implementation 'com.amplifyframework:aws-api:1.37.0'
implementation 'com.amplifyframework:aws-auth-cognito:1.37.0'
implementation 'com.amplifyframework:aws-datastore:1.37.0'
implementation 'com.amplifyframework:aws-predictions:1.37.0'
implementation 'com.amplifyframework:aws-storage-s3:1.37.0'
implementation 'com.amplifyframework:aws-analytics-pinpoint:1.37.1'
implementation 'com.amplifyframework:aws-api:1.37.1'
implementation 'com.amplifyframework:aws-auth-cognito:1.37.1'
implementation 'com.amplifyframework:aws-datastore:1.37.1'
implementation 'com.amplifyframework:aws-predictions:1.37.1'
implementation 'com.amplifyframework:aws-storage-s3:1.37.1'
}
```

Expand Down
10 changes: 10 additions & 0 deletions core-kotlin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## [Release 0.21.1](https://github.com/aws-amplify/amplify-android/releases/tag/release-kotlin_v0.21.1)

### Bug Fixes
- **storage**: Remove startForegroundService in favor of binding service

### Miscellaneous
- Update AWS SDK for Android version

[See all changes between 0.21.0 and 0.21.1](https://github.com/aws-amplify/amplify-android/compare/release-kotlin_v0.21.0...release-kotlin_v0.21.1)

## [Release 0.21.0](https://github.com/aws-amplify/amplify-android/releases/tag/release-kotlin_v0.21.0)

### Features
Expand Down
2 changes: 1 addition & 1 deletion core-kotlin/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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.21.0
VERSION_NAME=0.21.1
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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.37.0
VERSION_NAME=1.37.1

POM_GROUP=com.amplifyframework
POM_URL=https://github.com/aws-amplify/amplify-android
Expand Down
2 changes: 1 addition & 1 deletion rxbindings/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ library. In your module's `build.gradle`:
```gradle
dependencies {
// Add this line.
implementation 'com.amplifyframework:rxbindings:1.37.0'
implementation 'com.amplifyframework:rxbindings:1.37.1'
}
```

Expand Down