Skip to content

Commit

Permalink
Prepare for 0.28.0. (#1902)
Browse files Browse the repository at this point in the history
* Update CHANGELOG and version number for 0.28.0

* Add appveyor status to README
  • Loading branch information
jcollins-g authored Jan 14, 2019
1 parent c8cf6ad commit 3d314f0
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 2 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
## 0.28.0
* Fix a crash when a Dart library doesn't have the .dart suffix (#1897)
* Fix a crash when a Dart file is loaded with an unresolvable
prefix import in analyzer (#1896)
* Do not execute tools to generate documentation for non-canonical
elements that have canonical counterparts. This eliminates
"duplicate" tool runs that serve no purpose for generated docs
or macro loading. (#1898)
* Fix a minor problem where invalid command line parameters could
generate an ugly exception (#1895)
* Remove internal copy of mustache4dart and depend on the mustache
package. Many minor changes to templating as a result. (#1894)
* **Breaking change to warning handling**. Many new command line options
and dartdoc_options.yaml settings can constrain and configure
how warnings are interpreted by dartdoc, and whether they are fatal.
The old --show-warnings flag has been removed. (#1891, #1343, #1412, #1480)
* Fix a crash when loading README.md files that have invalid UTF-8.
(#1890, #1889)
* Early implementation of experiment flags for Dart tools, based
on the analyzer (#1884)

## 0.27.0
* Several dartdoc project infrastructure changes, including coverage
support. (#1869, #1878, #1879, #1881, #1882)
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# dartdoc

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


Expand Down
2 changes: 1 addition & 1 deletion lib/src/version.dart
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// Generated code. Do not modify.
const packageVersion = '0.27.0';
const packageVersion = '0.28.0';
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: dartdoc
# Also update the `version` field in lib/dartdoc.dart.
version: 0.27.0
version: 0.28.0
author: Dart Team <[email protected]>
description: A documentation generator for Dart.
homepage: https://github.com/dart-lang/dartdoc
Expand Down

0 comments on commit 3d314f0

Please sign in to comment.