Bump to 7.1.1 (dart-lang/markdown#550)
diff --git a/pkgs/markdown/CHANGELOG.md b/pkgs/markdown/CHANGELOG.md index dddeb4b..13f36ac 100644 --- a/pkgs/markdown/CHANGELOG.md +++ b/pkgs/markdown/CHANGELOG.md
@@ -1,7 +1,13 @@ +## 7.1.1 + +* Fix delimiter row matching pattern for tables. +* Tables are now able to interrupt other blocks. +* Fix an obscure issue with HtmlBlockSyntax. + ## 7.1.0 - * Support for [footnotes](https://pandoc.org/MANUAL.html#footnotes). - * Fixed bug causing infinite loop for links inside tables. +* Support for [footnotes](https://pandoc.org/MANUAL.html#footnotes). +* Fixed bug causing infinite loop for links inside tables. ## 7.0.2
diff --git a/pkgs/markdown/lib/src/version.dart b/pkgs/markdown/lib/src/version.dart index a8a1383..5d7be62 100644 --- a/pkgs/markdown/lib/src/version.dart +++ b/pkgs/markdown/lib/src/version.dart
@@ -1,2 +1,2 @@ // Generated code. Do not modify. -const packageVersion = '7.1.0'; +const packageVersion = '7.1.1';
diff --git a/pkgs/markdown/pubspec.yaml b/pkgs/markdown/pubspec.yaml index 85e4a0f..886d996 100644 --- a/pkgs/markdown/pubspec.yaml +++ b/pkgs/markdown/pubspec.yaml
@@ -1,5 +1,5 @@ name: markdown -version: 7.1.0 +version: 7.1.1 description: >- A portable Markdown library written in Dart that can parse Markdown into HTML.