From 8aaeec5b830c6780a278f8425848526fcaab4c4e Mon Sep 17 00:00:00 2001 From: Sam Rawlins Date: Wed, 12 Jul 2023 09:22:46 -0700 Subject: [PATCH] Bump to 7.1.1 --- CHANGELOG.md | 10 ++++++++-- lib/src/version.dart | 2 +- pubspec.yaml | 2 +- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dddeb4b4..13f36ac0 100644 --- a/CHANGELOG.md +++ b/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/lib/src/version.dart b/lib/src/version.dart index a8a13835..5d7be625 100644 --- a/lib/src/version.dart +++ b/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/pubspec.yaml b/pubspec.yaml index 85e4a0fe..886d9968 100644 --- a/pubspec.yaml +++ b/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.