Skip to content

Commit 2f8c11d

Browse files
EchoElletgithub-actions[bot]
authored andcommitted
chore(version): update to version 10.8.5
1 parent e7d3391 commit 2f8c11d

File tree

7 files changed

+34
-3
lines changed

7 files changed

+34
-3
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@
44

55
All notable changes to this project will be documented in this file.
66

7+
## 10.8.5
8+
9+
* fix: allow all correct URLs to be formatted by @orevial in https://github.com/singerdmx/flutter-quill/pull/2328
10+
* fix(macos): Implement actions for ExpandSelectionToDocumentBoundaryIntent and ExpandSelectionToLineBreakIntent to use keyboard shortcuts, unrelated cleanup to the bug fix. by @EchoEllet in https://github.com/singerdmx/flutter-quill/pull/2279
11+
12+
## New Contributors
13+
* @orevial made their first contribution at https://github.com/singerdmx/flutter-quill/pull/2328
14+
15+
**Full Changelog**: https://github.com/singerdmx/flutter-quill/compare/v10.8.4...v10.8.5
16+
717
## 10.8.4
818

919
- [Fixes an unhandled exception](https://github.com/singerdmx/flutter-quill/commit/8dd559b825030d29b30b32b353a08dcc13dc42b7) in case `getClipboardFiles()` wasn't supported

CHANGELOG_DATA.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"10.8.5": "* fix: allow all correct URLs to be formatted by @orevial in https://github.com/singerdmx/flutter-quill/pull/2328\r\n* fix(macos): Implement actions for ExpandSelectionToDocumentBoundaryIntent and ExpandSelectionToLineBreakIntent to use keyboard shortcuts, unrelated cleanup to the bug fix. by @EchoEllet in https://github.com/singerdmx/flutter-quill/pull/2279\r\n\r\n## New Contributors\r\n* @orevial made their first contribution at https://github.com/singerdmx/flutter-quill/pull/2328\r\n\r\n**Full Changelog**: https://github.com/singerdmx/flutter-quill/compare/v10.8.4...v10.8.5",
23
"10.8.4": "- [Fixes an unhandled exception](https://github.com/singerdmx/flutter-quill/commit/8dd559b825030d29b30b32b353a08dcc13dc42b7) in case `getClipboardFiles()` wasn't supported\r\n- [Updates min version](https://github.com/singerdmx/flutter-quill/commit/49569e47b038c5f61b7521571c102cf5ad5a0e3f) of internal dependency `quill_native_bridge`\r\n\r\n**Full Changelog**: https://github.com/singerdmx/flutter-quill/compare/v10.8.3...v10.8.4",
34
"10.8.3": "This release is identical to [v10.8.3-dev.0](https://github.com/singerdmx/flutter-quill/releases/tag/v10.8.3-dev.0), mainly published to bump the minimum version of [flutter_quill](https://pub.dev/packages/flutter_quill) in [flutter_quill_extensions](https://pub.dev/packages/flutter_quill_extensions) and to publish [quill-super-clipboard](https://github.com/FlutterQuill/quill-super-clipboard/).\r\n\r\nA new identical release `10.9.0` will be published soon with a release description.\r\n\r\n**Full Changelog**: https://github.com/singerdmx/flutter-quill/compare/v10.8.2...v10.8.3",
45
"10.8.3-dev.0": "A non-pre-release version with this change will be published soon.\r\n\r\n* feat: Use quill_native_bridge as default impl in DefaultClipboardService, fix related bugs in the extensions package by @EchoEllet in https://github.com/singerdmx/flutter-quill/pull/2230\r\n\r\n\r\n**Full Changelog**: https://github.com/singerdmx/flutter-quill/compare/v10.8.2...v10.8.3-dev.0",

flutter_quill_extensions/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@
44

55
All notable changes to this project will be documented in this file.
66

7+
## 10.8.5
8+
9+
* fix: allow all correct URLs to be formatted by @orevial in https://github.com/singerdmx/flutter-quill/pull/2328
10+
* fix(macos): Implement actions for ExpandSelectionToDocumentBoundaryIntent and ExpandSelectionToLineBreakIntent to use keyboard shortcuts, unrelated cleanup to the bug fix. by @EchoEllet in https://github.com/singerdmx/flutter-quill/pull/2279
11+
12+
## New Contributors
13+
* @orevial made their first contribution at https://github.com/singerdmx/flutter-quill/pull/2328
14+
15+
**Full Changelog**: https://github.com/singerdmx/flutter-quill/compare/v10.8.4...v10.8.5
16+
717
## 10.8.4
818

919
- [Fixes an unhandled exception](https://github.com/singerdmx/flutter-quill/commit/8dd559b825030d29b30b32b353a08dcc13dc42b7) in case `getClipboardFiles()` wasn't supported

flutter_quill_extensions/pubspec.yaml

Lines changed: 1 addition & 1 deletion
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: 10.8.4
3+
version: 10.8.5
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/

flutter_quill_test/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@
44

55
All notable changes to this project will be documented in this file.
66

7+
## 10.8.5
8+
9+
* fix: allow all correct URLs to be formatted by @orevial in https://github.com/singerdmx/flutter-quill/pull/2328
10+
* fix(macos): Implement actions for ExpandSelectionToDocumentBoundaryIntent and ExpandSelectionToLineBreakIntent to use keyboard shortcuts, unrelated cleanup to the bug fix. by @EchoEllet in https://github.com/singerdmx/flutter-quill/pull/2279
11+
12+
## New Contributors
13+
* @orevial made their first contribution at https://github.com/singerdmx/flutter-quill/pull/2328
14+
15+
**Full Changelog**: https://github.com/singerdmx/flutter-quill/compare/v10.8.4...v10.8.5
16+
717
## 10.8.4
818

919
- [Fixes an unhandled exception](https://github.com/singerdmx/flutter-quill/commit/8dd559b825030d29b30b32b353a08dcc13dc42b7) in case `getClipboardFiles()` wasn't supported

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: 10.8.4
3+
version: 10.8.5
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_quill
22
description: "A rich text editor built for Android, iOS, Web, and desktop platforms. It's the WYSIWYG editor and a Quill component for Flutter."
3-
version: 10.8.4
3+
version: 10.8.5
44
homepage: https://github.com/singerdmx/flutter-quill/
55
repository: https://github.com/singerdmx/flutter-quill/
66
issue_tracker: https://github.com/singerdmx/flutter-quill/issues/

0 commit comments

Comments
 (0)