Skip to content

Commit 82d97ba

Browse files
committed
chore: improve pub topics
1 parent 022a1be commit 82d97ba

File tree

7 files changed

+21
-33
lines changed

7 files changed

+21
-33
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
1111
## [Unreleased]
1212

13+
### Changed
14+
15+
- Improve pub topics in package metadata.
16+
1317
## [11.0.0-dev.13] - 2024-11-17
1418

1519
### Changed

flutter_quill_extensions/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
1111
## [Unreleased]
1212

13+
## [11.0.0-dev.4] - 2024-11-24
14+
1315
> [!IMPORTANT]
1416
> See the [migration guide from 10.0.0 to 11.0.0](https://github.com/singerdmx/flutter-quill/blob/master/doc/migration/10_to_11.md) for the full breaking changes and migration. Ensure to read the [breaking behavior](https://github.com/singerdmx/flutter-quill/blob/master/doc/migration/10_to_11.md#-breaking-behavior) section to avoid unexpected changes.
1517
1618
### Changed
1719

20+
- Improve pub topics in package metadata.
1821
- Update the minimum supported SDK version to **Flutter 3.0/Dart 3.0** for compatibility, fixing [#2347](https://github.com/singerdmx/flutter-quill/issues/2347).
1922
- Improve dependencies constraints for compatibility.
2023
- **BREAKING**: Update configuration class names to use the suffix `Config` instead of `Configurations`.
@@ -33,7 +36,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3336

3437
### Changed
3538

36-
- Updates minimum supported [`flutter_quill`](https://pub.dev/packages/flutter_quill) version to `11.0.0-dev.3`.
39+
- Update minimum supported [`flutter_quill`](https://pub.dev/packages/flutter_quill) version to `11.0.0-dev.3`.
3740

3841
## [11.0.0-dev.2] - 2024-11-08
3942

flutter_quill_extensions/pubspec.yaml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,11 @@
11
name: flutter_quill_extensions
22
description: Embed extensions for flutter_quill including image, video, formula and etc.
3-
version: 11.0.0-dev.3
3+
version: 11.0.0-dev.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/
77
documentation: https://github.com/singerdmx/flutter-quill/tree/master/flutter_quill_extensions/
8-
9-
topics:
10-
- ui
11-
- widgets
12-
- widget
13-
- rich-text-editor
8+
topics: [editor, text, rich-text-editor, quill, flutter-quill]
149

1510
platforms:
1611
android:

flutter_quill_test/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
1111
## [Unreleased]
1212

13+
## [11.0.0-dev.3] - 2024-11-24
14+
15+
### Changed
16+
17+
- Improve pub topics in package metadata.
18+
1319
## [11.0.0-dev.2] - 2024-11-08
1420

1521
### Changed

flutter_quill_test/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ which include methods to simplify interacting with the editor in test cases.
1111

1212
## 💾 Installation
1313

14-
Add the dependencies `flutter_test` and `flutter_quill_test`:
14+
Add the dependencies [`flutter_test`](https://api.flutter.dev/flutter/flutter_test/flutter_test-library.html) and `flutter_quill_test`:
1515

1616
```shell
17-
flutter pub add dev:flutter_test
17+
flutter pub add 'dev:flutter_test:{"sdk":"flutter"}'
1818
flutter pub add dev:flutter_quill_test
1919
```
2020

flutter_quill_test/pubspec.yaml

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,11 @@
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: 11.0.0-dev.2
3+
version: 11.0.0-dev.3
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/
77
documentation: https://github.com/singerdmx/flutter-quill/tree/master/flutter_quill_test/
8-
9-
topics:
10-
- ui
11-
- widgets
12-
- widget
13-
- rich-text-editor
14-
- quill
15-
16-
platforms:
17-
android:
18-
ios:
19-
linux:
20-
macos:
21-
web:
22-
windows:
8+
topics: [testing, text, rich-text-editor, flutter-quill]
239

2410
environment:
2511
sdk: '>=3.0.0 <4.0.0'

pubspec.yaml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,7 @@ 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/
77
documentation: https://github.com/singerdmx/flutter-quill/
8-
9-
topics:
10-
- ui
11-
- widgets
12-
- widget
13-
- rich-text-editor
14-
- quill
8+
topics: [editor, text, rich-text-editor, quill, flutter-quill]
159

1610
screenshots:
1711
- description: "iOS Light Mode"

0 commit comments

Comments
 (0)