Skip to content

Commit 2f1f19d

Browse files
authored
Bump to 0.32.3 (#2277)
1 parent b17950f commit 2f1f19d

File tree

4 files changed

+24
-7
lines changed

4 files changed

+24
-7
lines changed

CHANGELOG.md

+21-4
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,34 @@
1+
## 0.32.3
2+
3+
* Allow injected HTML in a macro which is output by a tool (#2274).
4+
* Add packageName to index.json entries (#2271).
5+
* Bump markdown to 2.1.5 (#2267).
6+
* Reduce the time to generate docs. Using an example Flutter package, the time
7+
required to generate docs was reduced from 67 seconds to 46 seconds, a 31%
8+
reduction (#2255, #2259, #2260, #2267).
9+
* Don't HTML-escape source code blocks in Markdown output (#2253).
10+
* Don't crash when documenting an export with '//' in the path (#2254).
11+
* Improve null safety support (#2269).
12+
13+
## 0.32.2 (unreleased)
14+
* Improve null safety support (#2248, #2250).
15+
* Allow dartdoc to execute a callback after `generateDocs` (#2238, #2239).
16+
* Fix a type parameter rendering bug (#2227).
17+
118
## 0.32.1
2-
* Allow documenting code with null safety (#2210, #2221)
3-
* Refactors moving toward mono-repo support (#2219)
19+
* Allow documenting code with null safety (#2210, #2221).
20+
* Refactors moving toward mono-repo support (#2219).
421

522
## 0.32.0
6-
* Fix type exception in 2.9 dev versions of dart (#2214)
23+
* Fix type exception in 2.9 dev versions of dart (#2214).
724
* **BREAKING** : Refactor `Container` class, changing the names
825
of many getters for templates. Users with custom templates
926
may need to update their templates (#2206, #2208).
1027
* Refactors moving toward mono-repo support (#2204, #2203).
1128
* Fix crash with newer analyzers and unnamed extension methods
1229
(#2197).
1330
* Use `flutter pub get` when appropriate instead of dart
14-
`pub get` (#2190)
31+
`pub get` (#2190).
1532

1633
## 0.31.0
1734
* `--link-to-remote` is now the default. (#2147)

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.32.1/%f%#L%l%'
4+
uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v0.32.3/%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.32.1';
2+
const packageVersion = '0.32.3';

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.32.1
3+
version: 0.32.3
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)