Skip to content

Commit 48cdaf6

Browse files
[flutter_markdown] update markdown dependency (flutter#1395)
1 parent 3f8a502 commit 48cdaf6

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

packages/flutter_markdown/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.6.10
2+
3+
* Update `markdown` dependency
4+
15
## 0.6.9+1
26

37
* Remove build status badge from `README.md`

packages/flutter_markdown/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: A Markdown renderer for Flutter. Create rich text output,
44
formatted with simple Markdown tags.
55
repository: https://github.com/flutter/packages/tree/main/packages/flutter_markdown
66
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+flutter_markdown%22
7-
version: 0.6.9+1
7+
version: 0.6.10
88

99
environment:
1010
sdk: ">=2.12.0 <3.0.0"
@@ -13,7 +13,7 @@ environment:
1313
dependencies:
1414
flutter:
1515
sdk: flutter
16-
markdown: ^4.0.0
16+
markdown: ^5.0.0
1717
meta: ^1.3.0
1818
path: ^1.8.0
1919

packages/flutter_markdown/test/link_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ void defineTests() {
404404
);
405405

406406
// Link is treated as ordinary text.
407-
expectInvalidLink('[link](<foo&gt;)');
407+
expectInvalidLink('[link](<foo>)');
408408
expect(linkTapResults, isNull);
409409
},
410410
);

0 commit comments

Comments
 (0)