diff --git a/CHANGELOG.md b/CHANGELOG.md index 9195d6ea65..625d0f4897 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +## [2.1.0] - June 3, 2021: +* SelectableHtml widget (supporting a subset of tags) which allow text selection +* Fixed shrinkWrap to actually shrink the horizontal space +* Support style tags to apply styling from inline css +* Support applying styles from Flutter themes +* Mouse hover on links when using Flutter Web +* Allow custom anchor link tap implementations +* Support additional list styling options +* Fix several minor whitespace issues in text flow +* Fixed specific colspan/rowspan usages in tables +* Fixed whitespace issues around images +* Swallow duplicate ids to prevent crashing the widget +* Fixes crashing tap detection when using both link and image taps +* Updates external dependencies +* Raised minimum Flutter version to 2.2.0 + ## [2.0.0] - April 29, 2021: * Stable release with all 2.0.0-nullsafety.X changes diff --git a/README.md b/README.md index 205659d643..80deef14bb 100644 --- a/README.md +++ b/README.md @@ -98,7 +98,7 @@ A Flutter widget for rendering HTML and CSS as Flutter widgets. Add the following to your `pubspec.yaml` file: dependencies: - flutter_html: ^2.0.0 + flutter_html: ^2.1.0 ## Currently Supported HTML Tags: | | | | | | | | | | | | diff --git a/pubspec.yaml b/pubspec.yaml index 4f9dbf3e3c..235805111a 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: flutter_html description: A Flutter widget rendering static HTML and CSS as Flutter widgets. -version: 2.0.0 +version: 2.1.0 homepage: https://github.com/Sub6Resources/flutter_html environment: