Skip to content

Commit d8d8543

Browse files
author
CatHood0
committed
Chore: prepare for 1.1.5
1 parent ed4c295 commit d8d8543

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

pubspec.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
name: flutter_quill_delta_easy_parser
22
description: "Convert your Quill Delta into a simple document format, that makes more simple manipulate text/block attributes"
3-
version: 1.1.4
3+
version: 1.1.5
44
documentation: https://github.com/CatHood0/flutter_quill_delta_easy_parser
5+
repository: https://github.com/CatHood0/flutter_quill_delta_easy_parser
56
homepage: https://github.com/CatHood0/flutter_quill_delta_easy_parser
67
issue_tracker: https://github.com/CatHood0/flutter_quill_delta_easy_parser/issues
78

test/flutter_quill_delta_easy_parser_test.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ void main() {
66
test('Should convert image to paragraph embed', () {
77
final Delta delta = Delta()
88
..insert({'image': '/device/user/to/path/file.jpg'})
9-
..insert('\n', {'align': 'center'});
9+
..insert('\n');
1010

1111
final Document expectedDocument = Document(paragraphs: [
1212
Paragraph.fromRawEmbed(

0 commit comments

Comments
 (0)