Skip to content

Commit 3d314f0

Browse files
authored
Prepare for 0.28.0. (#1902)
* Update CHANGELOG and version number for 0.28.0 * Add appveyor status to README
1 parent c8cf6ad commit 3d314f0

File tree

4 files changed

+24
-2
lines changed

4 files changed

+24
-2
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
## 0.28.0
2+
* Fix a crash when a Dart library doesn't have the .dart suffix (#1897)
3+
* Fix a crash when a Dart file is loaded with an unresolvable
4+
prefix import in analyzer (#1896)
5+
* Do not execute tools to generate documentation for non-canonical
6+
elements that have canonical counterparts. This eliminates
7+
"duplicate" tool runs that serve no purpose for generated docs
8+
or macro loading. (#1898)
9+
* Fix a minor problem where invalid command line parameters could
10+
generate an ugly exception (#1895)
11+
* Remove internal copy of mustache4dart and depend on the mustache
12+
package. Many minor changes to templating as a result. (#1894)
13+
* **Breaking change to warning handling**. Many new command line options
14+
and dartdoc_options.yaml settings can constrain and configure
15+
how warnings are interpreted by dartdoc, and whether they are fatal.
16+
The old --show-warnings flag has been removed. (#1891, #1343, #1412, #1480)
17+
* Fix a crash when loading README.md files that have invalid UTF-8.
18+
(#1890, #1889)
19+
* Early implementation of experiment flags for Dart tools, based
20+
on the analyzer (#1884)
21+
122
## 0.27.0
223
* Several dartdoc project infrastructure changes, including coverage
324
support. (#1869, #1878, #1879, #1881, #1882)

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# dartdoc
22

33
[![Build Status](https://travis-ci.org/dart-lang/dartdoc.svg?branch=master)](https://travis-ci.org/dart-lang/dartdoc)
4+
[![Appveyor Build Status](https://ci.appveyor.com/api/projects/status/s6sh69et2ga00dlu?svg=true)](https://ci.appveyor.com/project/devoncarew/dartdoc)
45
[![Coverage Status](https://coveralls.io/repos/github/dart-lang/dartdoc/badge.svg?branch=master)](https://coveralls.io/github/dart-lang/dartdoc?branch=master)
56

67

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.27.0';
2+
const packageVersion = '0.28.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
# Also update the `version` field in lib/dartdoc.dart.
3-
version: 0.27.0
3+
version: 0.28.0
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)