Skip to content
This repository has been archived by the owner on Jan 10, 2023. It is now read-only.

Add deprecation notice #18

Merged
merged 1 commit into from
Oct 1, 2019
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 1.0.3

- Added deprecation notice. Please use `package:provider` instead.
- See [Issue #3](https://github.com/google/flutter-provide/issues/3#issuecomment-525503648)
for more context

## 1.0.2

- Update README with a note about `package:provider` and `package:scoped_model`
Expand Down
21 changes: 13 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
**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).
**DEPRECATION NOTE:**
After discussion in the Flutter community over the difference between this
package, `package:provider`, and `package:scoped_model` (all with a similar,
InheritedWidget-based philosophy), we have decided to merge these efforts.

If you must choose a package today, it's safer to go with `package:scoped_model` than with this
package.
The community-initiated `provider` supersedes this package, `provide`. Get `provider`
[here](https://pub.dev/packages/provider).

To be clear, this package will always be available at
[pub.dev/packages/provide](https://pub.dev/packages/provide) — pub doesn't allow
packages to "disappear". But the package likely won't be upgraded.

See [Issue #3](https://github.com/google/flutter-provide/issues/3) for the full
discussion.

Watch the issue above or follow [Flutter's Twitter account](https://twitter.com/flutterio)
for updates.

---

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: provide
version: 1.0.2
version: 1.0.3
description: >
A simple framework for state management in Flutter. This package contains classes
to allow the passing of data down the widget tree.
Expand Down