Skip to content

Commit fc651f1

Browse files
authored
Merge pull request #867 from daohoangson/release/0.10.0
Prepare v0.10.0 releases
2 parents b26fa0a + 0063fe4 commit fc651f1

File tree

18 files changed

+56
-23
lines changed

18 files changed

+56
-23
lines changed

packages/core/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.10.0
2+
3+
- Add support for Flutter 3.7 (#861)
4+
15
## 0.9.1
26

37
- Adjust text-decoration-line cascading logic (#843)

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.1
20+
flutter_widget_from_html_core: ^0.10.0
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.1
2+
version: 0.10.0
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: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.10.0
2+
3+
- Add support for Flutter 3.7 (#861)
4+
- Update dependency flutter_svg to v2 (#862)
5+
16
## 0.9.1
27

38
- Adjust text-decoration-line cascading logic (#843)

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.1
30+
flutter_widget_from_html: ^0.10.0
3131
```
3232
3333
### Platform specific configuration

packages/enhanced/pubspec.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: flutter_widget_from_html
2-
version: 0.9.1
2+
version: 0.10.0
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.9.1
14-
fwfh_cached_network_image: ^0.7.0+3
15-
fwfh_chewie: ^0.7.1
16-
fwfh_just_audio: ^0.9.0
17-
fwfh_svg: ^0.8.0
18-
fwfh_url_launcher: ^0.9.0
19-
fwfh_webview: ">=0.6.2+5 <0.8.0"
13+
flutter_widget_from_html_core: ^0.10.0
14+
fwfh_cached_network_image: ^0.7.0+4
15+
fwfh_chewie: ^0.7.1+1
16+
fwfh_just_audio: ^0.9.0+1
17+
fwfh_svg: ^0.8.0+1
18+
fwfh_url_launcher: ^0.9.0+1
19+
fwfh_webview: ^0.7.0+1
2020
html: ^0.15.0
2121

2222
dependency_overrides:

packages/fwfh_cached_network_image/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.7.0+4
2+
3+
- Add support for [email protected] (#867)
4+
15
## 0.7.0+3
26

37
- Add support for [email protected] (#828)

packages/fwfh_cached_network_image/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: fwfh_cached_network_image
2-
version: 0.7.0+3
2+
version: 0.7.0+4
33
description: WidgetFactory extension to render IMG with cached_network_image plugin.
44
homepage: https://github.com/daohoangson/flutter_widget_from_html
55

@@ -12,7 +12,7 @@ dependencies:
1212
flutter:
1313
sdk: flutter
1414
flutter_cache_manager: ^3.0.0
15-
flutter_widget_from_html_core: ">=0.8.0 <0.10.0"
15+
flutter_widget_from_html_core: ">=0.8.0 <0.11.0"
1616

1717
dependency_overrides:
1818
flutter_widget_from_html_core:

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+1
2+
3+
- Add support for [email protected] (#867)
4+
15
## 0.7.1
26

37
- Add support for `src` attribute in VIDEO tag (#848)

packages/fwfh_chewie/pubspec.yaml

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

@@ -11,7 +11,7 @@ dependencies:
1111
chewie: ^1.0.0
1212
flutter:
1313
sdk: flutter
14-
flutter_widget_from_html_core: ">=0.8.0 <0.10.0"
14+
flutter_widget_from_html_core: ">=0.8.0 <0.11.0"
1515
video_player: ^2.2.9
1616

1717
dependency_overrides:

0 commit comments

Comments
 (0)