Skip to content

Commit d5d479b

Browse files
authored
Bump version to 0.33.0 (#2343)
1 parent ab98003 commit d5d479b

File tree

4 files changed

+30
-3
lines changed

4 files changed

+30
-3
lines changed

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
## 0.33.0
2+
3+
* Remove a use of resource loading (#2337)
4+
* Remove some unused dependencies (#2334)
5+
* Use the terminal width for the line length (#2333)
6+
* Disambiguate between named constructor and field (#2331)
7+
* Rename some fields which erroneously reference "default" constructors.
8+
(#2330)
9+
* Support abstract fields (#2329)
10+
* Allow ? and ! to trail in doc comment references (#2328)
11+
* Use first element in a MultiplyDefinedElement (#2326)
12+
* Update all (approximately) i/o operations to use ResourceProvider (#2315):
13+
* **Breaking change**: Many classes have a new ResourceProvider
14+
resourceProvider field: DartdocFileWriter, SnapshotCache,
15+
DartToolDefinition, ToolConfiguration, DartdocOption, PackageMetaProvider,
16+
PackageMeta, ToolTempFileTracker.
17+
* **Breaking change**: Each of SnapshotCache and ToolTempFileTracker has a
18+
static instance field which took no arguments; now that they need a
19+
ResourceProvider, it was unwieldy to pass a ResourceProvider to get the
20+
instance each time, so a new method, createInstance creates the instance.
21+
* Remove wbr tags around block-displayed elements (#2320)
22+
* Warn when the defining library cannot be found (#2319)
23+
* Improve error when `FLUTTER_ROOT` is missing. (#2316)
24+
* Remove dependency on deprecated resource package. (#2314)
25+
* Link const annotations to their docs (#2313)
26+
* **Breaking change**: Remove FileContents class. (#2312)
27+
128
## 0.32.4
229

330
* Fix paragraph spacing in enum values. (#2286)

dartdoc_options.yaml

Lines changed: 1 addition & 1 deletion
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.4/%f%#L%l%'
4+
uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v0.33.0/%f%#L%l%'

lib/src/version.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// Generated code. Do not modify.
2-
const packageVersion = '0.32.4';
2+
const packageVersion = '0.33.0';

pubspec.yaml

Lines changed: 1 addition & 1 deletion
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.4
3+
version: 0.33.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)