Skip to content

Commit 73e4b61

Browse files
authored
Prepare for dartdoc 0.17.0 (#1616)
* First version of the strong mode change, before refactoring * Basic refactor eliminating multiple inheritance manager builds * dartfmt and test package rebuild * Some tests for FutureOr * Update test package docs * Prepare for 0.17.0 * pubspec change * regen test package docs post merge * Regenerate package docs * Changelog up to date * Update changelog to reflect more breadth in the fix
1 parent 3f30b02 commit 73e4b61

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 0.17.0
2+
* More correctly deal with indentation inside documentation comments,
3+
fixing a set of minor markdown problems relating to indentation (like list
4+
handling) (#1608, #1507)
5+
* Strong mode enabled in dartdoc -- dartdoc will no longer read code
6+
that isn't strong-mode clean beginning with this version. (#1561)
7+
* Add a negatable flag (default on), --validate-links, to control whether
8+
Dartdoc's built-in link checker runs. (#1607)
9+
* dartdoc now works in checked mode for Flutter, fixing some edge-case
10+
navigation/canonicalization problems. (#1606)
11+
* Dartdoc now uses AnalysisDriver to build the element tree. (#1601, #1586)
12+
* Grinder now has arbitrary serving of pub packages and can compare
13+
warnings from different versions (#1600, #1599)
14+
115
## 0.16.0
216
* Cherrypick test changes from 0.15.1 and a fix for (#1603), updating
317
dartdoc to the latest analyzer.

lib/dartdoc.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export 'src/sdk.dart';
3636

3737
const String name = 'dartdoc';
3838
// Update when pubspec version changes.
39-
const String version = '0.16.0';
39+
const String version = '0.17.0';
4040

4141
final String defaultOutDir = path.join('doc', 'api');
4242

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: dartdoc
22
# Also update the `version` field in lib/dartdoc.dart.
3-
version: 0.16.0
3+
version: 0.17.0
44
author: Dart Team <[email protected]>
55
description: A documentation generator for Dart.
66
homepage: https://github.com/dart-lang/dartdoc

testing/test_package_docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8">
55
<meta http-equiv="X-UA-Compatible" content="IE=edge">
66
<meta name="viewport" content="width=device-width, initial-scale=1">
7-
<meta name="generator" content="made with love by dartdoc 0.16.0">
7+
<meta name="generator" content="made with love by dartdoc 0.17.0">
88
<meta name="description" content="test_package API docs, for the Dart programming language.">
99
<title>test_package - Dart API docs</title>
1010

0 commit comments

Comments
 (0)