diff --git a/CHANGELOG.md b/CHANGELOG.md index 31c6bc78aa..5dea112d68 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) +* 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 diff --git a/dartdoc_options.yaml b/dartdoc_options.yaml index 9941ba2b05..55d03f82a5 100644 --- a/dartdoc_options.yaml +++ b/dartdoc_options.yaml @@ -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%' diff --git a/lib/src/version.dart b/lib/src/version.dart index eef18fc596..7af78bb0fd 100644 --- a/lib/src/version.dart +++ b/lib/src/version.dart @@ -1,2 +1,2 @@ // Generated code. Do not modify. -const packageVersion = '0.41.0'; +const packageVersion = '0.42.0'; diff --git a/pubspec.yaml b/pubspec.yaml index aae6e4708d..ebc0942ba1 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -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: