Skip to content

Commit a4ab581

Browse files
authored
Merge pull request #857 from daohoangson/release/0.9.1
Prepare v0.9.1 releases
2 parents 7c23dc8 + bf7a21b commit a4ab581

File tree

9 files changed

+27
-8
lines changed

9 files changed

+27
-8
lines changed

packages/core/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 0.9.1
2+
3+
- Try catch possible errors during table layout (#846)
4+
- Add support for `list-style-type: none` (#847)
5+
- Adjust sizing logic for IMG tag (#854)
6+
- Redistribute table column width to avoid overflow (#856)
7+
18
## 0.9.0+2
29

310
- Change column width calculation logic (#747)

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.9.0
20+
flutter_widget_from_html_core: ^0.9.1
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.9.0+2
2+
version: 0.9.1
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: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 0.9.1
2+
3+
- Try catch possible errors during table layout (#846)
4+
- Add support for `list-style-type: none` (#847)
5+
- Add support for `src` attribute in VIDEO tag (#848)
6+
- Adjust sizing logic for IMG tag (#854)
7+
- Redistribute table column width to avoid overflow (#856)
8+
19
## 0.9.0+2
210

311
- Add support for [email protected] (#841)

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.9.0
30+
flutter_widget_from_html: ^0.9.1
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.9.0+2
2+
version: 0.9.1
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,9 +10,9 @@ environment:
1010
dependencies:
1111
flutter:
1212
sdk: flutter
13-
flutter_widget_from_html_core: ^0.9.0+2
13+
flutter_widget_from_html_core: ^0.9.1
1414
fwfh_cached_network_image: ^0.7.0+3
15-
fwfh_chewie: ^0.7.0+3
15+
fwfh_chewie: ^0.7.1
1616
fwfh_just_audio: ^0.9.0
1717
fwfh_svg: ^0.7.2+1
1818
fwfh_url_launcher: ^0.9.0

packages/fwfh_chewie/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.7.1
2+
3+
- Add support for `src` attribute in VIDEO tag (#848)
4+
15
## 0.7.0+3
26

37
- Fix context usage across async gaps (#835)

packages/fwfh_chewie/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_chewie: ^0.7.0
19+
fwfh_chewie: ^0.7.1
2020
```
2121
2222
## Usage

packages/fwfh_chewie/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: fwfh_chewie
2-
version: 0.7.0+3
2+
version: 0.7.1
33
description: WidgetFactory extension to render VIDEO with the chewie plugin.
44
homepage: https://github.com/daohoangson/flutter_widget_from_html
55

0 commit comments

Comments
 (0)