Bump version to 5.0.0 (dart-lang/markdown#406)
diff --git a/pkgs/markdown/CHANGELOG.md b/pkgs/markdown/CHANGELOG.md index e22c442..a9c0b57 100644 --- a/pkgs/markdown/CHANGELOG.md +++ b/pkgs/markdown/CHANGELOG.md
@@ -1,9 +1,23 @@ -## 5.0.0-dev +## 5.0.0 * Breaking change: Change the type of `parseInline`'s parameter from `String?` to `String`. * Fix table-rendering bug when table rows have trailing whitespace. [#368](https://github.com/dart-lang/markdown/issues/368). +* Do not allow reference link labels to contain left brackets. Thanks + @chenzhiguang. + [#335](https://github.com/dart-lang/markdown/issues/335). +* Treat lines matching a code block syntax as continuations of paragraphs, + inside blockquotes. Thanks @chenzhiguang. + [#358](https://github.com/dart-lang/markdown/issues/358). +* Add a syntax for GitLab-flavored fenced blockquotes. GitLab-flavored Markdown + will be evaluated into an ExtensionSet, in a future release. Thanks + @chenzhiguang. + [#359](https://github.com/dart-lang/markdown/issues/359). +* Add `bool withDefaultInlineSyntaxes` and `bool withDefaultBlockSyntaxes` + parameters to `markdownToHtml` and `Document` to support the case of + specifying exactly the list of desired syntaxes. Thanks @chenzhiguang. + [#393](https://github.com/dart-lang/markdown/issues/393). ## 4.0.1
diff --git a/pkgs/markdown/lib/src/version.dart b/pkgs/markdown/lib/src/version.dart index 99761d4..5836e0e 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 = '5.0.0-dev'; +const packageVersion = '5.0.0';
diff --git a/pkgs/markdown/pubspec.yaml b/pkgs/markdown/pubspec.yaml index 22a0cfc..1b3e2a4 100644 --- a/pkgs/markdown/pubspec.yaml +++ b/pkgs/markdown/pubspec.yaml
@@ -1,5 +1,5 @@ name: markdown -version: 5.0.0-dev +version: 5.0.0 description: A portable Markdown library written in Dart that can parse Markdown into HTML.