Skip to content

Commit

Permalink
[flutter_markdown] update markdown dependency (#1395)
Browse files Browse the repository at this point in the history
  • Loading branch information
domesticmouse committed Apr 16, 2022
1 parent 3f8a502 commit 48cdaf6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions packages/flutter_markdown/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.6.10

* Update `markdown` dependency

## 0.6.9+1

* Remove build status badge from `README.md`
Expand Down
4 changes: 2 additions & 2 deletions packages/flutter_markdown/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: A Markdown renderer for Flutter. Create rich text output,
formatted with simple Markdown tags.
repository: https://github.com/flutter/packages/tree/main/packages/flutter_markdown
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+flutter_markdown%22
version: 0.6.9+1
version: 0.6.10

environment:
sdk: ">=2.12.0 <3.0.0"
Expand All @@ -13,7 +13,7 @@ environment:
dependencies:
flutter:
sdk: flutter
markdown: ^4.0.0
markdown: ^5.0.0
meta: ^1.3.0
path: ^1.8.0

Expand Down
2 changes: 1 addition & 1 deletion packages/flutter_markdown/test/link_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ void defineTests() {
);

// Link is treated as ordinary text.
expectInvalidLink('[link](<foo&gt;)');
expectInvalidLink('[link](<foo>)');
expect(linkTapResults, isNull);
},
);
Expand Down

0 comments on commit 48cdaf6

Please sign in to comment.