Skip to content

Commit

Permalink
Prepare for dartdoc 6.2.1. (#3373)
Browse files Browse the repository at this point in the history
* Prepare for dartdoc 6.2.1.

* rebuild
  • Loading branch information
jcollins-g authored Mar 24, 2023
1 parent 592dc59 commit 0746cda
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 6.2.1
* Do not show induced modifiers from analyzer in class headers.
(#3371)
* Drop support for final, interface, and sealed mixins. (#3369)
* Display an error message instead of crashing on wrong data type
in dartdoc_options.yaml. (#3372)

## 6.2.0

* Add basic support for Dart 3.0 features, including records and class
Expand Down
2 changes: 1 addition & 1 deletion dartdoc_options.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dartdoc:
linkToSource:
root: '.'
uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v6.2.0/%f%#L%l%'
uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v6.2.1/%f%#L%l%'
1 change: 1 addition & 0 deletions lib/src/generator/templates.runtime_renderers.dart
Original file line number Diff line number Diff line change
Expand Up @@ -15872,6 +15872,7 @@ const _invisibleGetters = {
'isDartCoreSet',
'isDartCoreString',
'isDartCoreSymbol',
'isDartCoreType',
'isDynamic',
'isVoid',
'name',
Expand Down
2 changes: 1 addition & 1 deletion lib/src/version.dart
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// Generated code. Do not modify.
const packageVersion = '6.2.0';
const packageVersion = '6.2.1';
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: dartdoc
# Run `dart run grinder build` after updating.
version: 6.2.0
version: 6.2.1
description: A non-interactive HTML documentation generator for Dart source code.
repository: https://github.com/dart-lang/dartdoc

Expand Down Expand Up @@ -33,7 +33,7 @@ dev_dependencies:
code_builder: ^4.4.0
coverage: ^1.0.3
dart_style: ^2.2.0
grinder: ^0.9.0
grinder: ^0.9.3
http: ^0.13.3
js: ^0.6.5
lints: ^2.0.0
Expand Down

0 comments on commit 0746cda

Please sign in to comment.