Skip to content

Commit a1d86f2

Browse files
authored
Prepare for 0.38.0. (#2451)
1 parent c5ef843 commit a1d86f2

File tree

4 files changed

+20
-3
lines changed

4 files changed

+20
-3
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
## 0.38.0
2+
* Correctly handle intermediate abstract classes containing external
3+
implementations. (#2449, #2251)
4+
* More implementation added for Mustachio. (#2448, #2447, #2442)
5+
* Change analyzer minor version, updating to 0.41. (#2445)
6+
* **Breaking change**: Refactor sidebar handling to improve performance.
7+
Sidebar templates are now required to exist in custom sets, though
8+
you do not have to use them. See referred PR. (#2444)
9+
* **Breaking change**: Complete extraction of sorted methods used by
10+
templates. This moves sorting of elements closer to the presentation
11+
layer but requires renaming references in custom templates. See
12+
`sed` script example in referred PR. (#2438)
13+
* Fix missing null checks for YAML data. (#2441, #2378)
14+
* Give the correct exception for missing `FLUTTER_ROOT` even where `pub get`
15+
has already run. (#2440, #2407)
16+
* Internal change, prefer analyzer's InterfaceType.allSupertypes. (#2439)
17+
118
## 0.37.0
219
* Change scope for the dartdoc warning configuration to the library
320
being documented rather than where the symbol was originally

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/v0.37.0/%f%#L%l%'
4+
uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v0.38.0/%f%#L%l%'

lib/src/version.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// Generated code. Do not modify.
2-
const packageVersion = '0.37.0';
2+
const packageVersion = '0.38.0';

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: dartdoc
22
# Run `grind build` after updating.
3-
version: 0.37.0
3+
version: 0.38.0
44
description: A non-interactive HTML documentation generator for Dart source code.
55
homepage: https://github.com/dart-lang/dartdoc
66
environment:

0 commit comments

Comments
 (0)