Skip to content

Commit

Permalink
release: Amplify Android 1.19.0 (#1382)
Browse files Browse the repository at this point in the history
  • Loading branch information
awsmobilesdk authored Jun 17, 2021
1 parent f2bc5ac commit c0155c2
Show file tree
Hide file tree
Showing 6 changed files with 43 additions and 9 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
## [Release 1.19.0](https://github.com/aws-amplify/amplify-android/releases/tag/release_v1.19.0)

### Features
- add supporting types for multi-auth (#1346)

### Bug Fixes
- **auth:** throw correct auth exception for code mismatch (#1370)
- **datastore:** fix subscription timeout period not increasing (#1376)
- **datastore:** Add support for SerializedModel to predicate evaluation (#1375)
- **datastore:** merge incoming mutation with existing update mutation (#1379)

### Miscellaneous
- chore(api):tweaks to the api init process (#1309)
- Update stale.yml (#1380)

[See all changes between 1.18.0 and 1.19.0](https://github.com/aws-amplify/amplify-android/compare/release_v1.18.0...release_v1.19.0)

## [Release 1.18.0](https://github.com/aws-amplify/amplify-android/releases/tag/release_v1.18.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.18.0'
implementation 'com.amplifyframework:aws-api:1.18.0'
implementation 'com.amplifyframework:aws-auth-cognito:1.18.0'
implementation 'com.amplifyframework:aws-datastore:1.18.0'
implementation 'com.amplifyframework:aws-predictions:1.18.0'
implementation 'com.amplifyframework:aws-storage-s3:1.18.0'
implementation 'com.amplifyframework:aws-analytics-pinpoint:1.19.0'
implementation 'com.amplifyframework:aws-api:1.19.0'
implementation 'com.amplifyframework:aws-auth-cognito:1.19.0'
implementation 'com.amplifyframework:aws-datastore:1.19.0'
implementation 'com.amplifyframework:aws-predictions:1.19.0'
implementation 'com.amplifyframework:aws-storage-s3:1.19.0'
}
```

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

### Features
- add supporting types for multi-auth (#1346)

### Bug Fixes
- **auth:** throw correct auth exception for code mismatch (#1370)
- **datastore:** fix subscription timeout period not increasing (#1376)
- **datastore:** Add support for SerializedModel to predicate evaluation (#1375)
- **datastore:** merge incoming mutation with existing update mutation (#1379)

### Miscellaneous
- chore(api):tweaks to the api init process (#1309)
- Update stale.yml (#1380)

[See all changes between 0.2.0 and 0.3.0](https://github.com/aws-amplify/amplify-android/compare/release-kotlin_v0.2.0...release-kotlin_v0.3.0)

## [Release 0.2.0](https://github.com/aws-amplify/amplify-android/releases/tag/release-kotlin_v0.2.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.2.0
VERSION_NAME=0.3.0
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.18.0
VERSION_NAME=1.19.0

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.18.0'
implementation 'com.amplifyframework:rxbindings:1.19.0'
}
```

Expand Down

0 comments on commit c0155c2

Please sign in to comment.