Skip to content

Commit d79877d

Browse files
authored
Prepare for dartdoc 0.37.0 (#2435)
* Prepare for dartdoc 0.37.0 * Update changelog for #2434
1 parent eeeb627 commit d79877d

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## 0.37.0
2+
* Change scope for the dartdoc warning configuration to the library
3+
being documented rather than where the symbol was originally
4+
defined. (#2432, #2428)
5+
* **Breaking change**: Correct null dereference exception on unusual
6+
import URIs through change to PackageGraph.allLibraries. (#2429, #2426)
7+
* Adding (as yet unused) code for `mustachio`, a builder for mustache
8+
templates. (#2417, #2421, #2427, #2430, #2434).
9+
* Corrected a problem with tests erroneously passing in the grinder on
10+
latest SDK. (#2422, #2423, #2424)
11+
112
## 0.36.2
213

314
* Tag `Null safety` only where the code is actually null safe. (#2411, #2403)

dartdoc_options.yaml

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

lib/src/version.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// Generated code. Do not modify.
2-
const packageVersion = '0.36.2';
2+
const packageVersion = '0.37.0';

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: dartdoc
22
# Run `grind build` after updating.
3-
version: 0.36.2
3+
version: 0.37.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)