From 728f3f394e54eadd08a3a89a66ef188f4b39bc6e Mon Sep 17 00:00:00 2001 From: Sam Rawlins Date: Fri, 13 Sep 2024 08:36:32 -0700 Subject: [PATCH] Bump to 8.2.0 --- CHANGELOG.md | 16 ++++++++++++++++ dartdoc_options.yaml | 2 +- lib/src/version.dart | 2 +- pubspec.yaml | 2 +- 4 files changed, 19 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 057375f546..f46ca3cd76 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +## 8.2.0 + +* Include extension members on the extended type's page. Each extension + instance method, getter, setter, and operator that is applicable on a type or + one of a type's subtypes, is displayed on that type's page. For example, the + `Queue` class implements the `Iterable` class, so the Queue page shows + `elementAtOrNull` (a method provided by the `IterableExtensions` + extension, which extends `Iterable`), `nonNulls` (a getter provided by the + `NullableIterableExtensions` extension, which extends + `Iterable`), and `wait` (a getter provided by the `FutureIterable` + extension, which extends `Iterable>`). (#3863) +* Require analyzer 6.9.0 APIs. (#3874) +* Fix search which is not using canonical libraries as enclosing elements. + (#3877) +* Deduplicate exported members in categories. (#3867) + ## 8.1.0 * Fix many library sidebars, and search. (#3865) diff --git a/dartdoc_options.yaml b/dartdoc_options.yaml index 0c472aba0a..b3d15607ca 100644 --- a/dartdoc_options.yaml +++ b/dartdoc_options.yaml @@ -1,4 +1,4 @@ dartdoc: linkToSource: root: '.' - uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v8.1.0/%f%#L%l%' + uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v8.2.0/%f%#L%l%' diff --git a/lib/src/version.dart b/lib/src/version.dart index 4d22945640..6cd3ea4b0a 100644 --- a/lib/src/version.dart +++ b/lib/src/version.dart @@ -1 +1 @@ -const packageVersion = '8.1.0'; +const packageVersion = '8.2.0'; diff --git a/pubspec.yaml b/pubspec.yaml index e997ba3f58..a321ee4cb9 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: dartdoc -version: 8.1.0 +version: 8.2.0 description: A non-interactive HTML documentation generator for Dart source code. repository: https://github.com/dart-lang/dartdoc