Skip to content

Commit 090b05b

Browse files
authored
Bump to 8.2.0 (#3880)
1 parent 0a52976 commit 090b05b

File tree

4 files changed

+19
-3
lines changed

4 files changed

+19
-3
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
## 8.2.0
2+
3+
* Include extension members on the extended type's page. Each extension
4+
instance method, getter, setter, and operator that is applicable on a type or
5+
one of a type's subtypes, is displayed on that type's page. For example, the
6+
`Queue<E>` class implements the `Iterable<E>` class, so the Queue page shows
7+
`elementAtOrNull` (a method provided by the `IterableExtensions<T>`
8+
extension, which extends `Iterable<T>`), `nonNulls` (a getter provided by the
9+
`NullableIterableExtensions<T extends Object>` extension, which extends
10+
`Iterable<T?>`), and `wait` (a getter provided by the `FutureIterable<T>`
11+
extension, which extends `Iterable<Future<T>>`). (#3863)
12+
* Require analyzer 6.9.0 APIs. (#3874)
13+
* Fix search which is not using canonical libraries as enclosing elements.
14+
(#3877)
15+
* Deduplicate exported members in categories. (#3867)
16+
117
## 8.1.0
218

319
* Fix many library sidebars, and search. (#3865)

dartdoc_options.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
dartdoc:
22
linkToSource:
33
root: '.'
4-
uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v8.1.0/%f%#L%l%'
4+
uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v8.2.0/%f%#L%l%'

lib/src/version.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
const packageVersion = '8.1.0';
1+
const packageVersion = '8.2.0';

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: dartdoc
2-
version: 8.1.0
2+
version: 8.2.0
33
description: A non-interactive HTML documentation generator for Dart source code.
44
repository: https://github.com/dart-lang/dartdoc
55

0 commit comments

Comments
 (0)