From a1610aa6801d58743017bcb0d898778cd2211f75 Mon Sep 17 00:00:00 2001 From: Sam Rawlins Date: Wed, 28 Feb 2024 11:18:12 -0800 Subject: [PATCH] Bump to 8.0.6 (#3692) --- CHANGELOG.md | 20 ++++++++++++++++---- dartdoc_options.yaml | 2 +- lib/src/version.dart | 2 +- pubspec.yaml | 2 +- 4 files changed, 19 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 949178d343..38b093af79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,19 @@ -## 8.0.6-wip - -* Add troubleshooting information when the sidebars failed to load. -* Deprecate the `--templates-dir` option. +## 8.0.6 + +* Add troubleshooting information when the sidebars failed to load. (#3643) +* Deprecate the `--templates-dir` option. (#3667) +* In the "implementers" section of a class/mixin, include extension types that + "implement" said class/mixin. (#3658) +* Add the "implementers" section to the extension type page. (#3682) +* Display the exact type of an extension type's representation, not any erasure + of an extension type. (#3685) +* Reduce the time to document with a few improvements. (#3659, #3660) +* Correct the "constant initializer" view of some enums. (#3669) +* Render generic type parameters in function-typed parameters. (#3670) +* Stop warning on a missing constructor; dartdoc expects code to be valid. + (#3674) +* Do not require the `FLUTTER_ROOT` env variable when documenting a package + that requires Flutter. (#3688) ## 8.0.5 diff --git a/dartdoc_options.yaml b/dartdoc_options.yaml index cba086464a..d4cdbbbb94 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.6-wip/%f%#L%l%' + uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v8.0.6/%f%#L%l%' diff --git a/lib/src/version.dart b/lib/src/version.dart index 5a810e155b..1e92e5ec75 100644 --- a/lib/src/version.dart +++ b/lib/src/version.dart @@ -1 +1 @@ -const packageVersion = '8.0.6-wip'; +const packageVersion = '8.0.6'; diff --git a/pubspec.yaml b/pubspec.yaml index de49388d1b..cbfbe348ec 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: dartdoc -version: 8.0.6-wip +version: 8.0.6 description: A non-interactive HTML documentation generator for Dart source code. repository: https://github.com/dart-lang/dartdoc