From 4bc784619f2f4c9bcedefcd749a0f8d8ec8d64f3 Mon Sep 17 00:00:00 2001 From: Parker Lougheed Date: Tue, 31 Jan 2023 22:49:47 -0600 Subject: [PATCH] Begin changelog for next release after 6.1.5 --- CHANGELOG.md | 10 +++++++++- dartdoc_options.yaml | 2 +- lib/src/version.dart | 2 +- pubspec.yaml | 2 +- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a113950e5..5253bd7926 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 6.2.0-dev + +* Stop generating a null-safety badge for elements + in a null-safe library. (#3295) +* Use a sun icon for switching to the light theme. (#3309) +* Standardize the search icon style to a new SVG. (#3302) +* Remove CSS classes no longer used in dartdoc generated content. (#3302) + ## 6.1.5 * Fix remote linking in Dart 2.18. (#3267) @@ -45,7 +53,7 @@ * Reduce memory usage by much more extensive use of non-growable Lists, and constant empty lists. (#3151 and #3154) * Make `Warnable.package` non-nullable. (#3155) -* Refactor the various `Renderer` classses. Specifically add abstract +* Refactor the various `Renderer` classes. Specifically add abstract `ElementTypeRendererHtml` and `ElementTypeRendererMd` classes which implement some shared calculations. (#3163) * Deprecate `ElementTypeRenderer.wrapNullability`. (#3163) diff --git a/dartdoc_options.yaml b/dartdoc_options.yaml index fa0574c558..38a3d4f21d 100644 --- a/dartdoc_options.yaml +++ b/dartdoc_options.yaml @@ -1,4 +1,4 @@ dartdoc: linkToSource: root: '.' - uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v6.1.5/%f%#L%l%' + uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v6.2.0-dev/%f%#L%l%' diff --git a/lib/src/version.dart b/lib/src/version.dart index 03ff8ba3d1..9f803a1fd6 100644 --- a/lib/src/version.dart +++ b/lib/src/version.dart @@ -1,2 +1,2 @@ // Generated code. Do not modify. -const packageVersion = '6.1.5'; +const packageVersion = '6.2.0-dev'; diff --git a/pubspec.yaml b/pubspec.yaml index d8aab22d92..6c2a740963 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: dartdoc # Run `dart run grinder build` after updating. -version: 6.1.5 +version: 6.2.0-dev description: A non-interactive HTML documentation generator for Dart source code. repository: https://github.com/dart-lang/dartdoc