Skip to content

Prepare for dartdoc 0.42.0. #2604

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 2 commits into from
Apr 5, 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
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
## 0.42.0
* Add some tests and verify basic support for triple-shift, and check
to be sure that using the function as type parameter feature does not crash
dartdoc (#2518, #2517, #2603).
* BREAKING CHANGE: Refactor of dartdoc features and annotations. Use
`hasFeatures` in templates in place of checking `featuresAsString` as a
boolean (#2600), and `linkedNameWithParameters` for getting rendered
annotations (#2605).
* Implement generic type parameters on annotations. (#2600, #2516).
* No longer depend on mustache. (#2596)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

We might be able to remove the package:mustache dep in the sdk after this rolls in.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

good point! I'll take a look at that.

* BREAKING CHANGE: Replace mustache with mustachio. Use `asCallable` instead
of `hasCallable` in templates to handle casts correctly. (#2564)

## 0.41.0
* Write out doc files for static methods on extensions. (#2588, #2591)
* Fix a crash where dartdoc tried to create a duplicate field in the event
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.41.0/%f%#L%l%'
uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v0.42.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.41.0';
const packageVersion = '0.42.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.41.0
version: 0.42.0
description: A non-interactive HTML documentation generator for Dart source code.
homepage: https://github.com/dart-lang/dartdoc
environment:
Expand Down