diff --git a/CHANGELOG.md b/CHANGELOG.md index 42709691a7..21de8249c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ -## 8.0.11-wip +## 8.0.11 -* Fix the slash key (`/`) not focusing the search box. +* Fix the slash key (`/`) not focusing the search box. (#3810) +* Start using resolution of doc-imports (via `/// @docImport`). (#3805) +* Make `ContainerAccessor.isInherited` a final field. +* Make `PackageGraph.analysisContext` a private field. ## 8.0.10 diff --git a/dartdoc_options.yaml b/dartdoc_options.yaml index f6125e0d2e..184f16408f 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.11-wip/%f%#L%l%' + uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v8.0.11/%f%#L%l%' diff --git a/lib/src/version.dart b/lib/src/version.dart index 7c6229d02b..86f8591bd4 100644 --- a/lib/src/version.dart +++ b/lib/src/version.dart @@ -1 +1 @@ -const packageVersion = '8.0.11-wip'; +const packageVersion = '8.0.11'; diff --git a/pubspec.yaml b/pubspec.yaml index d353cc1a35..f47e733e11 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: dartdoc -version: 8.0.11-wip +version: 8.0.11 description: A non-interactive HTML documentation generator for Dart source code. repository: https://github.com/dart-lang/dartdoc