Skip to content

Commit f70c8e7

Browse files
Dillon Nysdnys1
authored andcommitted
chore(version): 0.6.0
## Cherry Picks - 0a88308 - fb84fe7 - 99d4281 - c5e7a76 - 92e4ea3 - 545c9bc - 0c09ab2 - 55f2cc9 - 6d50d49 commit-id:bce032c9
1 parent ffd4a2d commit f70c8e7

File tree

52 files changed

+171
-78
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+171
-78
lines changed

.circleci/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,7 @@ workflows:
228228
"amplify_authenticator",
229229
"amplify_core",
230230
"amplify_datastore",
231+
"amplify_datastore_plugin_interface",
231232
"amplify_flutter",
232233
"amplify_storage_s3"
233234
]

example/pubspec.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ dependencies:
2525
flutter:
2626
sdk: flutter
2727
file_picker: ^4.0.0
28-
amplify_flutter: 0.5.1
29-
amplify_analytics_pinpoint: 0.5.1
30-
amplify_auth_cognito: 0.5.1
31-
amplify_storage_s3: 0.5.1
28+
amplify_flutter: 0.6.0
29+
amplify_analytics_pinpoint: 0.6.0
30+
amplify_auth_cognito: 0.6.0
31+
amplify_storage_s3: 0.6.0
3232
# The following adds the Cupertino Icons font to your application.
3333
# Use with the CupertinoIcons class for iOS style icons.
3434
cupertino_icons: ^0.1.3

packages/amplify/amplify_flutter/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 0.6.0 (2022-06-20)
2+
3+
- Bump minimum Dart SDK to 2.15
4+
- fix(api): Concurrent access to `OperationsManager`
5+
- fix(auth): Fix device serialization
6+
- fix(authenticator): Trim strings for password confirmation comparison ([#1653](https://github.com/aws-amplify/amplify-flutter/pull/1653))
7+
18
## 0.5.1 (2022-05-24)
29

310
- fix(api): OperationsManager crash (#1598)

packages/amplify/amplify_flutter/example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ dependencies:
1717
# The example app is bundled with the plugin so we use a path dependency on
1818
# the parent directory to use the current plugin's version.
1919
path: ../
20-
aws_common: ^0.1.0
20+
aws_common: ^0.1.1
2121
flutter:
2222
sdk: flutter
2323

packages/amplify/amplify_flutter/lib/src/amplify_impl.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ abstract class AmplifyClass {
133133
static AmplifyClass instance = AmplifyClass();
134134

135135
/// The library version.
136-
String get version => '0.5.1';
136+
String get version => '0.6.0';
137137

138138
/// Resets the Amplify implementation, removing all traces of Amplify from
139139
/// the device.

packages/amplify/amplify_flutter/pubspec.yaml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: amplify_flutter
22
description: The top level Flutter package for the AWS Amplify libraries.
3-
version: 0.5.1
3+
version: 0.6.0
44
homepage: https://docs.amplify.aws/lib/q/platform/flutter/
55
repository: https://github.com/aws-amplify/amplify-flutter
66
issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues
@@ -10,11 +10,11 @@ environment:
1010
flutter: ">=2.10.0"
1111

1212
dependencies:
13-
amplify_core: 0.5.1
14-
amplify_datastore_plugin_interface: 0.5.1
15-
amplify_flutter_android: 0.5.1
16-
amplify_flutter_ios: 0.5.1
17-
aws_common: ^0.1.0
13+
amplify_core: 0.6.0
14+
amplify_datastore_plugin_interface: 0.6.0
15+
amplify_flutter_android: 0.6.0
16+
amplify_flutter_ios: 0.6.0
17+
aws_common: ^0.1.1
1818
collection: ^1.15.0
1919
flutter:
2020
sdk: flutter
@@ -39,12 +39,12 @@ dependencies:
3939
# path: ../amplify_storage_s3
4040

4141
dev_dependencies:
42-
amplify_analytics_pinpoint: 0.5.1
43-
amplify_api: 0.5.1
44-
amplify_auth_cognito: 0.5.1
45-
amplify_datastore: 0.5.1
42+
amplify_analytics_pinpoint: 0.6.0
43+
amplify_api: 0.6.0
44+
amplify_auth_cognito: 0.6.0
45+
amplify_datastore: 0.6.0
4646
amplify_lints: ^1.0.0
47-
amplify_storage_s3: 0.5.1
47+
amplify_storage_s3: 0.6.0
4848
amplify_test:
4949
path: ../../amplify_test
5050
build_runner: ^2.0.0

packages/amplify/amplify_flutter_android/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.6.0 (2022-06-20)
2+
3+
- Bump minimum Dart SDK to 2.15
4+
15
## 0.5.1 (2022-05-24)
26

37
- Update pub.dev links

packages/amplify/amplify_flutter_android/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: amplify_flutter_android
22
description: The method channel implementation for amplify_flutter on Android
3-
version: 0.5.1
3+
version: 0.6.0
44
homepage: https://docs.amplify.aws/lib/q/platform/flutter/
55
repository: https://github.com/aws-amplify/amplify-flutter
66
issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues

packages/amplify/amplify_flutter_ios/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.6.0 (2022-06-20)
2+
3+
- Bump minimum Dart SDK to 2.15
4+
15
## 0.5.1 (2022-05-24)
26

37
- Update pub.dev links

packages/amplify/amplify_flutter_ios/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: amplify_flutter_ios
22
description: The method channel implementation for amplify_flutter on iOS
3-
version: 0.5.1
3+
version: 0.6.0
44
homepage: https://docs.amplify.aws/lib/q/platform/flutter/
55
repository: https://github.com/aws-amplify/amplify-flutter
66
issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues
@@ -10,7 +10,7 @@ environment:
1010
flutter: ">=2.10.0"
1111

1212
dependencies:
13-
amplify_core: 0.5.1
13+
amplify_core: 0.6.0
1414
flutter:
1515
sdk: flutter
1616

0 commit comments

Comments
 (0)