Skip to content

Commit b733d49

Browse files
authored
Prepare for dartdoc 0.45.0. (#2668)
1 parent 2e2b5cf commit b733d49

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 0.45.0
2+
* BREAKING CHANGE: Custom templates using some obscure
3+
getters of modelType may no longer function (returnElement
4+
and others not used in standard templates). (#2665)
5+
* BREAKING CHANGE: Implicit `Future` detection, where an
6+
asynchronous function without a declared return type had
7+
its return type listed as `Future`, is no more. Those
8+
functions now show a `dynamic` return type. (#2665)
9+
* Fix a problem with enum field location calculations.
10+
(#2660, #2659)
11+
* Support for AOT compilation of templates added to Mustachio,
12+
but not yet enabled. (#2664, #2651)
13+
* Some additional new lookup code implementation and testing.
14+
115
## 0.44.0
216
* BREAKING CHANGE: Add support for generic metadata rendering in
317
typedefs. (#2649, #2654). This changes how typedefs are rendered

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