Skip to content

Prepare for dartdoc 6.2.1. #3373

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Mar 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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