From 4aa18a89724dbbf10ca9657887194a138a366e93 Mon Sep 17 00:00:00 2001 From: Joe Bingham Date: Wed, 25 Nov 2020 14:33:03 -0700 Subject: [PATCH] Update version and changelog --- CHANGELOG.md | 5 +++++ pubspec.yaml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c5cae78..6b08a134 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## [5.7.1](https://github.com/cleandart/react-dart/compare/5.7.0...5.7.1) + +- [#289] Update most deprecations that were slated for removal in v6.0.0 to be slated for removal in v7.0.0 instead. To keep the migration to v6.0.0 as easy as possible, only APIs that are known to be completely unused will be removed in v6.0.0. Therefore, most APIs that were marked for removal in v6.0.0 will remain until the v7.0.0 release. This PR updated deprecation annotations to reflect this. +- [#287] Deprecate `SyntheticEvent.isFormEvent`. Because form events do not exist as their own type in ReactJS, this helper will be removed in v6.0.0. Instead, check for the expected [form event types](https://reactjs.org/docs/events.html#form-events). + ## [5.7.0](https://github.com/cleandart/react-dart/compare/5.6.1...5.7.0) - [#282] Add `SyntheticEvent` helpers that eliminate the need to use synthetic event class constructors. Additionally, added utilities to assist in type checking events without manually using the `is` keyword. diff --git a/pubspec.yaml b/pubspec.yaml index a7a1c64f..b4cb82e9 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: react -version: 5.7.0 +version: 5.7.1 authors: - Samuel Hapák - Greg Littlefield