Skip to content

Prepare for dartdoc 1.0.0 #2710

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 13 commits into from
Jun 29, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
## 1.0.0
* BREAKING CHANGE: Enable the enhanced lookups by default.
Some formerly invalid doc references will no longer be
ignored and now generate warnings, and some ambiguous
references may change where they point to. As a fallback,
allow a `--no-enhanced-reference-lookup` but this will
be removed soon so please file bugs if you need to use this.
(#2705)
* Use the Mustachio AOT compiler for default templates. (#2677)
* Unhide the `--format` option so users can discover
the markdown support (#2703)
* Internal refactors of tool/dartdoc code. (#2686, 2669)
* Many changes to improve compliance on the new lookup code.
(#2709, #2707, #2706, #2703, #2702, #2700, #2691, #2687, #2684,
#2682, #2673, #2672, #2671)
* Update favicon to match dart.dev. (#2681)
* Runtime and AOT renderer fixes for Mustachio. (#2697,
#2674, #2676, #2670, #2697)
* Fix several problems with head analyzer. (#2680, #2687)
* The favicon has been updated to match dart.dev. (#2681)
* A variety of internal refactoring changes.

## 0.45.0
* BREAKING CHANGE: Custom templates using some obscure
getters of modelType may no longer function (returnElement
Expand Down
2 changes: 1 addition & 1 deletion dartdoc_options.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dartdoc:
linkToSource:
root: '.'
uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v0.45.0/%f%#L%l%'
uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v1.0.0/%f%#L%l%'
2 changes: 1 addition & 1 deletion lib/src/version.dart
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// Generated code. Do not modify.
const packageVersion = '0.45.0';
const packageVersion = '1.0.0';
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: dartdoc
# Run `grind build` after updating.
version: 0.45.0
version: 1.0.0
description: A non-interactive HTML documentation generator for Dart source code.
homepage: https://github.com/dart-lang/dartdoc
environment:
Expand Down