Skip to content

Commit e11f935

Browse files
authored
Prepare for dartdoc-0.39.0 (#2116)
1 parent 5cefeae commit e11f935

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 0.30.0
2+
* BREAKING CHANGE: no longer use `<base href>` in generated documentation, instead
3+
use real relative links. This may break manually constructed links that rely
4+
on base href, or could impact post-processing of dartdoc HTML. Most users
5+
should not notice. A hidden flag can for now restore the old behavior, but
6+
will be removed soon. (#2098, #2096)
7+
* More refactors to prepare for markdown rendering. (#2100, #2114)
8+
* Fix crashes with extensions on special types. (#2112, #2102)
9+
* Add a new error type for multiple-file overwrite problems. (#2111, #2110)
10+
* Allow FunctionTypes to work in applicability checks for extensions. (#2109, #2101)
11+
* Refactor to use Element.declaration over Member.baseMember. (#2106)
12+
113
## 0.29.3
214
* More refactoring changes to rendering (#2085, #2086).
315
* Internal changes to stop using newly deprecated analyzer interfaces (#2091, #2093).

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.29.3/%f%#L%l%'
4+
uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v0.30.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.29.3';
2+
const packageVersion = '0.30.0';

pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
name: dartdoc
22
# Run `grind build` after updating.
3-
version: 0.29.3
3+
version: 0.30.0
44
description: A non-interactive HTML documentation generator for Dart source code.
55
homepage: https://github.com/dart-lang/dartdoc
66
environment:
77
sdk: '>=2.6.0 <3.0.0'
88

99
dependencies:
10-
analyzer: ^0.39.2+1
10+
analyzer: ^0.39.4
1111
args: '>=1.5.0 <2.0.0'
1212
collection: ^1.2.0
1313
crypto: ^2.0.6

0 commit comments

Comments
 (0)