diff --git a/CHANGELOG.md b/CHANGELOG.md index 7970a04af9..edbba7ccdf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,12 @@ -## 8.0.7-wip +## 8.0.7 +* Generate documentation for static members of enums. (#3697) +* Display an extension's extended type in a few places. (#3708) +* Minimal support for documenting a package with macro applications. (#3687) * Deprecate the `--nodoc` option. (#3690) * Deprecate the `--resources-dir` option. (#3696) +* Deprecate the `--include-externals` option. (#3694) +* Remove the warning regarding unresolved exports; these are handled by the analyzer. (#3711) ## 8.0.6 diff --git a/dartdoc_options.yaml b/dartdoc_options.yaml index 20863b58cc..1d8294c166 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.7-wip/%f%#L%l%' + uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v8.0.7/%f%#L%l%' diff --git a/lib/src/version.dart b/lib/src/version.dart index 226602118c..d067b9b050 100644 --- a/lib/src/version.dart +++ b/lib/src/version.dart @@ -1 +1 @@ -const packageVersion = '8.0.7-wip'; +const packageVersion = '8.0.7'; diff --git a/pubspec.yaml b/pubspec.yaml index 7d7c65a897..9eec53f60a 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: dartdoc -version: 8.0.7-wip +version: 8.0.7 description: A non-interactive HTML documentation generator for Dart source code. repository: https://github.com/dart-lang/dartdoc