From b1ea0b2a392c9aee381713137b5996b392b2c314 Mon Sep 17 00:00:00 2001 From: pq Date: Mon, 20 Jun 2016 09:46:05 -0700 Subject: [PATCH] Publish `0.9.6`. BUG= R=keertip@google.com Review URL: https://codereview.chromium.org//2080603003 . --- CHANGELOG.md | 6 ++++++ codereview.settings | 3 +++ lib/dartdoc.dart | 2 +- pubspec.yaml | 2 +- 4 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 codereview.settings diff --git a/CHANGELOG.md b/CHANGELOG.md index 026bcbe4c7..267b6e18a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.9.6 +* [bug] fix enum indexes (#1176). +* [enhancement] added support for crossdart. If there is a `crossdart.json` + file in the input dir (which can be generated by Crossdart), it will use that + file to add links to `crossdart.info` in the source code block. + ## 0.9.5 * [enhancement] support for `@example` tag to inject sample code into comments. eg. `{@example core/ts/bootstrap/bootstrap.dart region='bootstrap'}`, where diff --git a/codereview.settings b/codereview.settings new file mode 100644 index 0000000000..d6d8a3bab3 --- /dev/null +++ b/codereview.settings @@ -0,0 +1,3 @@ +CODE_REVIEW_SERVER: https://codereview.chromium.org/ +VIEW_VC: https://github.com/dart-lang/dartdoc/commit/ +CC_LIST: reviews@dartlang.org diff --git a/lib/dartdoc.dart b/lib/dartdoc.dart index 471d6abdfc..e9a14a4728 100644 --- a/lib/dartdoc.dart +++ b/lib/dartdoc.dart @@ -39,7 +39,7 @@ export 'src/package_meta.dart'; const String name = 'dartdoc'; // Update when pubspec version changes. -const String version = '0.9.5'; +const String version = '0.9.6'; final String defaultOutDir = p.join('doc', 'api'); diff --git a/pubspec.yaml b/pubspec.yaml index 7d7ec7acd6..78b56b5fbc 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: dartdoc # Also update the `version` field in lib/dartdoc.dart. -version: 0.9.5 +version: 0.9.6 author: Dart Team description: A documentation generator for Dart. homepage: https://github.com/dart-lang/dartdoc