diff --git a/CHANGELOG.md b/CHANGELOG.md index b200cc0fae..3a1a9c8650 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## 8.0.9 + +* Deprecate the `missingCodeBlockLanguage` warning. This is replaced with the + `missing_code_block_language_in_doc_comment` lint rule. (#3743) +* Properly sort unnamed libraries. (#3746) +* Correctly link comment references for types specified in a function's return + type's type arguments. (#3768). +* Require `analyzer: ^6.5.0`. (#3763) + ## 8.0.8 * More support for documenting a package with macro applications. (#3712) diff --git a/dartdoc_options.yaml b/dartdoc_options.yaml index 982eb63398..0e9fb7968c 100644 --- a/dartdoc_options.yaml +++ b/dartdoc_options.yaml @@ -1,4 +1,4 @@ dartdoc: linkToSource: root: '.' - uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v8.0.8/%f%#L%l%' + uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v8.0.9/%f%#L%l%' diff --git a/lib/src/version.dart b/lib/src/version.dart index 97a8005e6a..57ce5ec075 100644 --- a/lib/src/version.dart +++ b/lib/src/version.dart @@ -1 +1 @@ -const packageVersion = '8.0.8'; +const packageVersion = '8.0.9'; diff --git a/pubspec.yaml b/pubspec.yaml index 4f8b7cfe49..16dc577ca3 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: dartdoc -version: 8.0.8 +version: 8.0.9 description: A non-interactive HTML documentation generator for Dart source code. repository: https://github.com/dart-lang/dartdoc