Skip to content

Commit 3bd5ced

Browse files
author
Ellet
committed
Prepare to release 9.3.4
1 parent a711840 commit 3bd5ced

File tree

13 files changed

+30
-12
lines changed

13 files changed

+30
-12
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## 9.3.4
6+
* fix: multiline styling stuck/not working properly [#1782](https://github.com/singerdmx/flutter-quill/pull/1782)
7+
58
## 9.3.3
69
* Update `quill_html_converter` versions
710

dart_quill_delta/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## 9.3.4
6+
* fix: multiline styling stuck/not working properly [#1782](https://github.com/singerdmx/flutter-quill/pull/1782)
7+
58
## 9.3.3
69
* Update `quill_html_converter` versions
710

dart_quill_delta/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: dart_quill_delta
22
description: A port of quill-js-delta from typescript to dart
3-
version: 9.3.3
3+
version: 9.3.4
44
homepage: https://github.com/singerdmx/flutter-quill/tree/master/dart_quill_delta/
55
repository: https://github.com/singerdmx/flutter-quill/tree/master/dart_quill_delta/
66
issue_tracker: https://github.com/singerdmx/flutter-quill/issues/

flutter_quill_extensions/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## 9.3.4
6+
* fix: multiline styling stuck/not working properly [#1782](https://github.com/singerdmx/flutter-quill/pull/1782)
7+
58
## 9.3.3
69
* Update `quill_html_converter` versions
710

flutter_quill_extensions/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_quill_extensions
22
description: Embed extensions for flutter_quill including image, video, formula and etc.
3-
version: 9.3.3
3+
version: 9.3.4
44
homepage: https://github.com/singerdmx/flutter-quill/tree/master/flutter_quill_extensions/
55
repository: https://github.com/singerdmx/flutter-quill/tree/master/flutter_quill_extensions/
66
issue_tracker: https://github.com/singerdmx/flutter-quill/issues/
@@ -42,7 +42,7 @@ dependencies:
4242
video_player: ^2.8.1
4343
youtube_player_flutter: ^8.1.2
4444
url_launcher: ^6.2.1
45-
super_clipboard: ^0.8.5
45+
super_clipboard: ^0.8.9
4646
gal: ^2.3.0
4747
gal_linux: ^0.1.0
4848
image_picker: ^1.0.4

flutter_quill_test/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## 9.3.4
6+
* fix: multiline styling stuck/not working properly [#1782](https://github.com/singerdmx/flutter-quill/pull/1782)
7+
58
## 9.3.3
69
* Update `quill_html_converter` versions
710

flutter_quill_test/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_quill_test
22
description: Test utilities for flutter_quill which includes methods to simplify interacting with the editor in test cases.
3-
version: 9.3.3
3+
version: 9.3.4
44
homepage: https://github.com/singerdmx/flutter-quill/tree/master/flutter_quill_test/
55
repository: https://github.com/singerdmx/flutter-quill/tree/master/flutter_quill_test/
66
issue_tracker: https://github.com/singerdmx/flutter-quill/issues/

pubspec.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_quill
22
description: A rich text editor built for the modern Android, iOS, web and desktop platforms. It is the WYSIWYG editor and a Quill component for Flutter.
3-
version: 9.3.3
3+
version: 9.3.4
44
homepage: https://1o24bbs.com/c/bulletjournal/108/
55
repository: https://github.com/singerdmx/flutter-quill/
66
issue_tracker: https://github.com/singerdmx/flutter-quill/issues/
@@ -44,7 +44,7 @@ dependencies:
4444

4545
# Normal packages
4646
intl: ^0.18.1
47-
dart_quill_delta: ^9.3.0
47+
dart_quill_delta: ^9.3.3
4848
collection: ^1.17.0
4949
quiver: ^3.2.1
5050
equatable: ^2.0.5
@@ -62,15 +62,15 @@ dependencies:
6262
url_launcher: ^6.2.4
6363
flutter_keyboard_visibility: ^6.0.0
6464
device_info_plus: ^9.1.0
65-
super_clipboard: ^0.8.5
65+
super_clipboard: ^0.8.9
6666

6767
dev_dependencies:
6868
flutter_lints: ^3.0.1
6969
flutter_test:
7070
sdk: flutter
71-
flutter_quill_test: ^9.2.10
71+
flutter_quill_test: ^9.3.3
7272
test: ^1.24.3
73-
yaml_edit: ^2.1.1
73+
yaml_edit: ^2.2.0
7474

7575
flutter:
7676
uses-material-design: true

quill_html_converter/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## 9.3.4
6+
* fix: multiline styling stuck/not working properly [#1782](https://github.com/singerdmx/flutter-quill/pull/1782)
7+
58
## 9.3.3
69
* Update `quill_html_converter` versions
710

quill_html_converter/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: quill_html_converter
22
description: A extension for flutter_quill package to add support for dealing with conversion to/from html
3-
version: 9.3.3
3+
version: 9.3.4
44
homepage: https://github.com/singerdmx/flutter-quill/tree/master/quill_html_converter/
55
repository: https://github.com/singerdmx/flutter-quill/tree/master/quill_html_converter/
66
issue_tracker: https://github.com/singerdmx/flutter-quill/issues/

quill_pdf_converter/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## 9.3.4
6+
* fix: multiline styling stuck/not working properly [#1782](https://github.com/singerdmx/flutter-quill/pull/1782)
7+
58
## 9.3.3
69
* Update `quill_html_converter` versions
710

quill_pdf_converter/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: quill_pdf_converter
22
description: A extension for flutter_quill package to add support for dealing with conversion to pdf
3-
version: 9.3.3
3+
version: 9.3.4
44
homepage: https://github.com/singerdmx/flutter-quill/tree/master/quill_pdf_converter/
55
repository: https://github.com/singerdmx/flutter-quill/tree/master/quill_pdf_converter/
66
issue_tracker: https://github.com/singerdmx/flutter-quill/issues/

version.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
const version = '9.3.3';
1+
const version = '9.3.4';

0 commit comments

Comments
 (0)