From b60f644e17b816b9bd687e6960f26f908603236e Mon Sep 17 00:00:00 2001 From: Filip Hracek Date: Thu, 21 Feb 2019 21:43:01 -0800 Subject: [PATCH 1/2] Update README about provider and scoped_model packages --- CHANGELOG.md | 4 ++++ README.md | 13 +++++++++++++ pubspec.yaml | 2 +- 3 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fc469fe..e06c064 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.2 + +- Update README with a note about `package:provider` and `package:scoped_model` + ## 1.0.1 - Added `example/` with CI testing diff --git a/README.md b/README.md index af202e3..19b8481 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,16 @@ +*NOTE 2019-02-21:* There's a discussion in the Flutter community over the difference between this +package, `package:provider`, and `package:scoped_model`. There is a possibility that (some) +of these efforts will merge. Learn more in issue +[#3](https://github.com/google/flutter-provide/issues/3). + +If you must choose a package today, it's safer to go with `package:scoped_model` than with this +package. + +Watch the issue above or follow [Flutter's Twitter account](https://twitter.com/flutterio) +for updates. + +--- + This package contains classes to allow the passing of data down the widget tree. It is designed as a replacement for `ScopedModel` that allows for more flexible handling of data types and data. diff --git a/pubspec.yaml b/pubspec.yaml index 8cddbc3..fb2eed5 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: provide -version: 1.0.1 +version: 1.0.2 description: > A simple framework for state management in Flutter. This package contains classes to allow the passing of data down the widget tree. From 3fa9dd4a6be3e7188e85c04cb79b4b331a1f9197 Mon Sep 17 00:00:00 2001 From: Filip Hracek Date: Thu, 21 Feb 2019 21:46:32 -0800 Subject: [PATCH 2/2] Embolden the note --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 19b8481..941b5ef 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -*NOTE 2019-02-21:* There's a discussion in the Flutter community over the difference between this +**NOTE 2019-02-21:** There's a discussion in the Flutter community over the difference between this package, `package:provider`, and `package:scoped_model`. There is a possibility that (some) of these efforts will merge. Learn more in issue [#3](https://github.com/google/flutter-provide/issues/3).