Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix version bump
  • Loading branch information
gspencergoog committed Oct 21, 2024
commit 869aa9a3fc0aaaf7c5fe5b229447a62f6194a94e
2 changes: 1 addition & 1 deletion packages/flutter_markdown/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 0.7.5
## 0.7.4+1

* Makes it so that custom blocks are not limited to being a Column or
SizedBox.
Expand Down
2 changes: 1 addition & 1 deletion 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.7.4
version: 0.7.4+1

environment:
sdk: ^3.3.0
Expand Down
4 changes: 1 addition & 3 deletions packages/flutter_markdown/test/custom_syntax_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -412,9 +412,7 @@ class NoteSyntax extends md.BlockSyntax {

class CustomTagBlockBuilder extends MarkdownElementBuilder {
@override
bool isBlockElement() {
return true;
}
bool isBlockElement() => true;

@override
Widget visitElementAfterWithContext(
Expand Down