Skip to content

Commit b1ea0b2

Browse files
committed
1 parent 36432c6 commit b1ea0b2

File tree

4 files changed

+11
-2
lines changed

4 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 0.9.6
2+
* [bug] fix enum indexes (#1176).
3+
* [enhancement] added support for crossdart. If there is a `crossdart.json`
4+
file in the input dir (which can be generated by Crossdart), it will use that
5+
file to add links to `crossdart.info` in the source code block.
6+
17
## 0.9.5
28
* [enhancement] support for `@example` tag to inject sample code into comments.
39
eg. `{@example core/ts/bootstrap/bootstrap.dart region='bootstrap'}`, where

codereview.settings

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
CODE_REVIEW_SERVER: https://codereview.chromium.org/
2+
VIEW_VC: https://github.com/dart-lang/dartdoc/commit/
3+

lib/dartdoc.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export 'src/package_meta.dart';
3939

4040
const String name = 'dartdoc';
4141
// Update when pubspec version changes.
42-
const String version = '0.9.5';
42+
const String version = '0.9.6';
4343

4444
final String defaultOutDir = p.join('doc', 'api');
4545

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.9.5
3+
version: 0.9.6
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)