File tree Expand file tree Collapse file tree 4 files changed +19
-8
lines changed Expand file tree Collapse file tree 4 files changed +19
-8
lines changed Original file line number Diff line number Diff line change
1
+ ## [ Release 2.3.0] ( https://github.com/aws-amplify/amplify-android/releases/tag/release_v2.3.0 )
2
+
3
+ ### Features
4
+ - ** storage:** Add support for S3 acceleration mode ([ #2304 ] ( https://github.com/aws-amplify/amplify-android/issues/2304 ) )
5
+ - ** aws-datastore:** Make the reachability component configurable ([ #2307 ] ( https://github.com/aws-amplify/amplify-android/issues/2307 ) )
6
+
7
+ ### Bug Fixes
8
+ - ** datastore:** Fix aliasing of column names ([ #2312 ] ( https://github.com/aws-amplify/amplify-android/issues/2312 ) )
9
+
10
+ [ See all changes between 2.2.2 and 2.3.0] ( https://github.com/aws-amplify/amplify-android/compare/release_v2.2.2...release_v2.3.0 )
11
+
1
12
## [ Release 2.2.2] ( https://github.com/aws-amplify/amplify-android/releases/tag/release_v2.2.2 )
2
13
3
14
### Bug Fixes
Original file line number Diff line number Diff line change @@ -69,12 +69,12 @@ dependencies section:
69
69
``` groovy
70
70
dependencies {
71
71
// Only specify modules that provide functionality your app will use
72
- implementation 'com.amplifyframework:aws-analytics-pinpoint:2.2.2 '
73
- implementation 'com.amplifyframework:aws-api:2.2.2 '
74
- implementation 'com.amplifyframework:aws-auth-cognito:2.2.2 '
75
- implementation 'com.amplifyframework:aws-datastore:2.2.2 '
76
- implementation 'com.amplifyframework:aws-predictions:2.2.2 '
77
- implementation 'com.amplifyframework:aws-storage-s3:2.2.2 '
72
+ implementation 'com.amplifyframework:aws-analytics-pinpoint:2.3.0 '
73
+ implementation 'com.amplifyframework:aws-api:2.3.0 '
74
+ implementation 'com.amplifyframework:aws-auth-cognito:2.3.0 '
75
+ implementation 'com.amplifyframework:aws-datastore:2.3.0 '
76
+ implementation 'com.amplifyframework:aws-predictions:2.3.0 '
77
+ implementation 'com.amplifyframework:aws-storage-s3:2.3.0 '
78
78
}
79
79
```
80
80
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ org.gradle.jvmargs=-Xmx4g
12
12
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
13
13
org.gradle.parallel =true
14
14
15
- VERSION_NAME =2.2.2
15
+ VERSION_NAME =2.3.0
16
16
17
17
POM_GROUP =com.amplifyframework
18
18
POM_URL =https://github.com/aws-amplify/amplify-android
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ library. In your module's `build.gradle`:
24
24
``` gradle
25
25
dependencies {
26
26
// Add this line.
27
- implementation 'com.amplifyframework:rxbindings:2.2.2 '
27
+ implementation 'com.amplifyframework:rxbindings:2.3.0 '
28
28
}
29
29
```
30
30
You can’t perform that action at this time.
0 commit comments