Skip to content

Commit 5758f23

Browse files
authored
Prepare v0.8.2 releases (daohoangson#626)
* [core] v0.8.2 * [fwfh_webview] v0.6.2 * [enhanced] v0.8.2
1 parent 296aad2 commit 5758f23

File tree

9 files changed

+24
-8
lines changed

9 files changed

+24
-8
lines changed

packages/core/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.8.2
2+
3+
- Optimize `HtmlListMarker` (#623)
4+
- Fix leading and trailing whitespace within `PRE` being trimmed (#624)
5+
16
## 0.8.1
27

38
- Mark enhanced `HtmlWidget.webViewXxx` properties as deprecated (#614)

packages/core/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Add this to your app's `pubspec.yaml` file:
1717

1818
```yaml
1919
dependencies:
20-
flutter_widget_from_html_core: ^0.8.1
20+
flutter_widget_from_html_core: ^0.8.2
2121
```
2222
2323
## Usage

packages/core/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: flutter_widget_from_html_core
2-
version: 0.8.1
2+
version: 0.8.2
33
description: Flutter package to render html as widgets that focuses on correctness and extensibility.
44
homepage: https://github.com/daohoangson/flutter_widget_from_html/tree/master/packages/core
55

packages/enhanced/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 0.8.2
2+
3+
- Optimize `HtmlListMarker` (#623)
4+
- Fix leading and trailing whitespace within `PRE` being trimmed (#624)
5+
- Replace `evaluateJavascript` with `runJavascriptReturningResult` (#625)
6+
17
## 0.8.1+1
28

39
- Fix missing `test/images` directory

packages/enhanced/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Add this to your app's `pubspec.yaml` file:
2727

2828
```yaml
2929
dependencies:
30-
flutter_widget_from_html: ^0.8.1
30+
flutter_widget_from_html: ^0.8.2
3131
```
3232
3333
### Platform specific configuration

packages/enhanced/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: flutter_widget_from_html
2-
version: 0.8.1+1
2+
version: 0.8.2
33
description: Flutter package to render html as widgets that supports hyperlink, image, audio, video, iframe and many other tags.
44
homepage: https://github.com/daohoangson/flutter_widget_from_html
55

@@ -10,13 +10,13 @@ environment:
1010
dependencies:
1111
flutter:
1212
sdk: flutter
13-
flutter_widget_from_html_core: ^0.8.1
13+
flutter_widget_from_html_core: ^0.8.2
1414
fwfh_cached_network_image: ^0.7.0+1
1515
fwfh_chewie: ^0.7.0+1
1616
fwfh_just_audio: ^0.6.2+2
1717
fwfh_svg: ^0.7.1
1818
fwfh_url_launcher: ^0.6.1+3
19-
fwfh_webview: ^0.6.1+3
19+
fwfh_webview: ^0.6.2
2020
html: ^0.15.0
2121

2222
dependency_overrides:

packages/fwfh_webview/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.6.2
2+
3+
- Add support for webview_flutter@2.2 (#625)
4+
- Replace `evaluateJavascript` with `runJavascriptReturningResult` (#625)
5+
16
## 0.6.1+3
27

38
- Update for Flutter 2.5 (#587)

packages/fwfh_webview/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Add this to your app's `pubspec.yaml` file:
1616
```yaml
1717
dependencies:
1818
flutter_widget_from_html_core: any
19-
fwfh_webview: ^0.6.0
19+
fwfh_webview: ^0.6.2
2020
```
2121
2222
## Usage

packages/fwfh_webview/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: fwfh_webview
2-
version: 0.6.1+3
2+
version: 0.6.2
33
description: WidgetFactory extension to render IFRAME with the official WebView plugin.
44
homepage: https://github.com/daohoangson/flutter_widget_from_html
55

0 commit comments

Comments
 (0)