From 38690d2527895b6a581ba0a02bce536040329bb9 Mon Sep 17 00:00:00 2001 From: Sam Rawlins Date: Sat, 29 Jun 2024 09:55:28 -0700 Subject: [PATCH] Bump to 8.0.10 --- CHANGELOG.md | 18 +++++++++++++++--- dartdoc_options.yaml | 2 +- lib/src/version.dart | 2 +- pubspec.yaml | 2 +- 4 files changed, 18 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 735fbb3d47..d8d165351c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,21 @@ -## 8.0.10-dev +## 8.0.10 -* Un-deprecate the `--resources-dir` option. +* Un-deprecate the `--resources-dir` option. (#3782) * Remove support for `[this]` as a comment reference. Referring to the containing element can be written as `this [Foo]`, and referring to 'this' - can just be written as `` `this` ``. + can just be written as `` `this` ``. (#3765) +* Stop displaying constructors meeting a few attributes: generative + constructors of `abstract final`, `abstract interface`, and `sealed` classes. + (#3796 and #3804) +* Strip `@docImport` directives from library documentation. (#3803) +* Combine the two implementations of "library canonicalization." This should be + a no-op. (#3781) +* Simplify `Library.allModelElements`, but should be a no-op. (#3793) +* Support the `--stats` flag for the 'doc sdk' task + (`dart tools/task.dart doc sdk --stats`). (#3791) +* Make `CommentReferenceParser.codeRef` private. (#3771) +* Make `PackageGraph.allLibraries` private. (#3792) +* Remove the unnecessary Privacy mixin. (#3794) ## 8.0.9+1 diff --git a/dartdoc_options.yaml b/dartdoc_options.yaml index 66ebd86225..145b5f2a79 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.10-dev/%f%#L%l%' + uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v8.0.10/%f%#L%l%' diff --git a/lib/src/version.dart b/lib/src/version.dart index 1834fdd686..8e2e9d7dc1 100644 --- a/lib/src/version.dart +++ b/lib/src/version.dart @@ -1 +1 @@ -const packageVersion = '8.0.10-dev'; +const packageVersion = '8.0.10'; diff --git a/pubspec.yaml b/pubspec.yaml index 20da197756..0dd0d867d5 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: dartdoc -version: 8.0.10-dev +version: 8.0.10 description: A non-interactive HTML documentation generator for Dart source code. repository: https://github.com/dart-lang/dartdoc