Skip to content

Commit 0746cda

Browse files
authored
Prepare for dartdoc 6.2.1. (#3373)
* Prepare for dartdoc 6.2.1. * rebuild
1 parent 592dc59 commit 0746cda

5 files changed

+12
-4
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 6.2.1
2+
* Do not show induced modifiers from analyzer in class headers.
3+
(#3371)
4+
* Drop support for final, interface, and sealed mixins. (#3369)
5+
* Display an error message instead of crashing on wrong data type
6+
in dartdoc_options.yaml. (#3372)
7+
18
## 6.2.0
29

310
* Add basic support for Dart 3.0 features, including records and class

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

lib/src/generator/templates.runtime_renderers.dart

+1
Original file line numberDiff line numberDiff line change
@@ -15872,6 +15872,7 @@ const _invisibleGetters = {
1587215872
'isDartCoreSet',
1587315873
'isDartCoreString',
1587415874
'isDartCoreSymbol',
15875+
'isDartCoreType',
1587515876
'isDynamic',
1587615877
'isVoid',
1587715878
'name',

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 = '6.2.0';
2+
const packageVersion = '6.2.1';

pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: dartdoc
22
# Run `dart run grinder build` after updating.
3-
version: 6.2.0
3+
version: 6.2.1
44
description: A non-interactive HTML documentation generator for Dart source code.
55
repository: https://github.com/dart-lang/dartdoc
66

@@ -33,7 +33,7 @@ dev_dependencies:
3333
code_builder: ^4.4.0
3434
coverage: ^1.0.3
3535
dart_style: ^2.2.0
36-
grinder: ^0.9.0
36+
grinder: ^0.9.3
3737
http: ^0.13.3
3838
js: ^0.6.5
3939
lints: ^2.0.0

0 commit comments

Comments
 (0)