Skip to content

Commit b86cddc

Browse files
authored
Prepare for dartdoc 1.0.0 (#2710)
* changelog/pubspec * rebuild and clean up changelog * add reference to 2697 before I forget * Update changelog to reflect latest head changes * Version 1.0?
1 parent e23ed44 commit b86cddc

File tree

4 files changed

+25
-3
lines changed

4 files changed

+25
-3
lines changed

CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
## 1.0.0
2+
* BREAKING CHANGE: Enable the enhanced lookups by default.
3+
Some formerly invalid doc references will no longer be
4+
ignored and now generate warnings, and some ambiguous
5+
references may change where they point to. As a fallback,
6+
allow a `--no-enhanced-reference-lookup` but this will
7+
be removed soon so please file bugs if you need to use this.
8+
(#2705)
9+
* Use the Mustachio AOT compiler for default templates. (#2677)
10+
* Unhide the `--format` option so users can discover
11+
the markdown support (#2703)
12+
* Internal refactors of tool/dartdoc code. (#2686, 2669)
13+
* Many changes to improve compliance on the new lookup code.
14+
(#2709, #2707, #2706, #2703, #2702, #2700, #2691, #2687, #2684,
15+
#2682, #2673, #2672, #2671)
16+
* Update favicon to match dart.dev. (#2681)
17+
* Runtime and AOT renderer fixes for Mustachio. (#2697,
18+
#2674, #2676, #2670, #2697)
19+
* Fix several problems with head analyzer. (#2680, #2687)
20+
* The favicon has been updated to match dart.dev. (#2681)
21+
* A variety of internal refactoring changes.
22+
123
## 0.45.0
224
* BREAKING CHANGE: Custom templates using some obscure
325
getters of modelType may no longer function (returnElement

dartdoc_options.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
dartdoc:
22
linkToSource:
33
root: '.'
4-
uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v0.45.0/%f%#L%l%'
4+
uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v1.0.0/%f%#L%l%'

lib/src/version.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// Generated code. Do not modify.
2-
const packageVersion = '0.45.0';
2+
const packageVersion = '1.0.0';

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: dartdoc
22
# Run `grind build` after updating.
3-
version: 0.45.0
3+
version: 1.0.0
44
description: A non-interactive HTML documentation generator for Dart source code.
55
homepage: https://github.com/dart-lang/dartdoc
66
environment:

0 commit comments

Comments
 (0)