From e07999d2ad958262466b563b163bb49d65fe5baf Mon Sep 17 00:00:00 2001 From: mbaumgartenbr Date: Sun, 30 May 2021 14:39:40 -0300 Subject: [PATCH] Bump version to 0.5.0 --- CHANGELOG.md | 16 +++++++++++++++- pubspec.lock | 6 +++--- pubspec.yaml | 2 +- 3 files changed, 19 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d66db103..f53c0f7d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,18 @@ -## [0.4.0] 11-05-2021 +## [0.5.0] 30-05-2021 +### Reverts most changes from 0.4.0 + +* Removing the TreeViewController made nodes inside a different page or in + a drawer to lose their state. + - TreeViewController is back, all logic from _TreeViewState got moved back + to it. + +* Merged the utils methods into TreeNode (ancestors, descendants, ...). + +* The TreeView no longer auto scrolls nodes. + - Now scrolling has to be done by the user. + + +## [0.4.0] 17-05-2021 ### Simplification of the TreeView API. * Dropped TreeViewController and merged it's logic into [TreeViewState] diff --git a/pubspec.lock b/pubspec.lock index a1207117..31f7129b 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -7,7 +7,7 @@ packages: name: async url: "https://pub.dartlang.org" source: hosted - version: "2.5.0" + version: "2.6.1" boolean_selector: dependency: transitive description: @@ -99,7 +99,7 @@ packages: name: source_span url: "https://pub.dartlang.org" source: hosted - version: "1.8.0" + version: "1.8.1" stack_trace: dependency: transitive description: @@ -134,7 +134,7 @@ packages: name: test_api url: "https://pub.dartlang.org" source: hosted - version: "0.2.19" + version: "0.3.0" typed_data: dependency: transitive description: diff --git a/pubspec.yaml b/pubspec.yaml index 1b7acc7c..2e77f673 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -2,7 +2,7 @@ name: flutter_fancy_tree_view description: > A highly customizable TreeView Widget for visualization of nested data in Flutter. -version: 0.4.0 +version: 0.5.0 homepage: https://mbaumgartenbr.github.io/flutter_tree_view repository: https://github.com/mbaumgartenbr/flutter_tree_view