Skip to content

Commit 18fdf4a

Browse files
authored
Prepare for version 0.31.0 (#2188)
1 parent 611b675 commit 18fdf4a

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 0.31.0
2+
* `--link-to-remote` is now the default. (#2147)
3+
* `--show-progress` is now the default on interactive terminals,
4+
and has improved quality of output. (#2147)
5+
* Excessive notifications for "parsing" have been squelched from
6+
stdout. (#2141, #2147)
7+
* Fixed a bug where explicitly requested private members in a comment
8+
reference could result in broken link generation. (#2147)
9+
* Dartdoc now generates documentation for itself cleanly (#2147)
10+
111
## 0.30.4
212
* Fix regression in canonicalization from extension methods. (#2099).
313
* Do not throw if a const constructor's staticElement can not be resolved

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.30.4/%f%#L%l%'
4+
uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v0.31.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.30.4';
2+
const packageVersion = '0.31.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.30.4
3+
version: 0.31.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)