Skip to content

Commit 3057136

Browse files
authored
Prepare for version 0.44.0. (#2656)
1 parent 48e42dc commit 3057136

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## 0.44.0
2+
* BREAKING CHANGE: Add support for generic metadata rendering in
3+
typedefs. (#2649, #2654). This changes how typedefs are rendered
4+
so that they all appear as new generic typedefs. This means
5+
that typedefs can no longer share the `_callable` templates
6+
and have their own implementations.
7+
* Add query strings to static assets to ensure they refresh in
8+
browsers on changes. (#2646)
9+
* Change the comment reference unparser to use analyzer AST tokens
10+
instead of file access. (#2642)
11+
112
## 0.43.0
213
* Add experimental lookup code for comment references eventually
314
destined to replace most of `lib/src/markdown_processor.dart`. Most

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.43.0/%f%#L%l%'
4+
uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v0.44.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.43.0';
2+
const packageVersion = '0.44.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.43.0
3+
version: 0.44.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)