Skip to content

Commit ead898e

Browse files
authored
Prepare for dartdoc 0.30.4. (#2181)
1 parent e486b13 commit ead898e

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## 0.30.4
2+
* Fix regression in canonicalization from extension methods. (#2099).
3+
* Do not throw if a const constructor's staticElement can not be resolved
4+
(#2176, #2143).
5+
* Hide non-local embedded SDKs, preventing Flutter's sky_engine from
6+
being documented by default with Flutter packages (#1949, #2175).
7+
* Fix a problem with reentrance on TopLevelVariable doc caching. (#2173, #2143)
8+
* A batch of tweaks for the new markdown output templates (#2162)
9+
110
## 0.30.3
211
* Add support for `Never` type from analyzer (#2167, #2170).
312
* First markdown renderers landed (#2152) and dartdoc can sometimes

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

pubspec.yaml

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

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

0 commit comments

Comments
 (0)