Skip to content

Commit d6f6d44

Browse files
authored
Prepare to publish 0.28.4 (#1989)
* Prepare to publish 0.28.4 * build
1 parent 456aa63 commit d6f6d44

File tree

5 files changed

+7
-4
lines changed

5 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
## 0.28.4-dev
1+
## 0.28.4
22
* **Breaking change** Change the default for `allow-tools` command line flag to false.
3+
* Fix some lints.
4+
* Update to support a future version of analyzer.
35

46
## 0.28.3+3
57
* Fix code highlighting in Dart after string interpolation (#1946, #1948) by

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.28.4-dev/%f%#L%l%'
4+
uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v0.28.4/%f%#L%l%'

lib/src/model.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3032,6 +3032,7 @@ abstract class ModelElement extends Canonicalization
30323032
e.computeConstantValue().getField(e.name).toIntValue();
30333033
newModelElement = new EnumField.forConstant(
30343034
index, e, library, packageGraph, getter);
3035+
// ignore: unnecessary_cast
30353036
} else if ((e.enclosingElement as ClassElement).isEnum) {
30363037
newModelElement =
30373038
new EnumField(e, library, packageGraph, getter, setter);

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.28.4-dev';
2+
const packageVersion = '0.28.4';

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.28.4-dev
3+
version: 0.28.4
44
author: Dart Team <[email protected]>
55
description: A documentation generator for Dart.
66
homepage: https://github.com/dart-lang/dartdoc

0 commit comments

Comments
 (0)