File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.9.5
2
+ * [ enhancement] support for ` @example ` tag to inject sample code into comments.
3
+ eg. ` {@example core/ts/bootstrap/bootstrap.dart region='bootstrap'} ` , where
4
+ path is path to source in the package examples directory, and region is
5
+ specified by ` #docregion ` and ` #enddocregion ` in the file.
6
+ * [ enhancement] do not document if there is a ` @nodoc ` in the doc comment.
7
+ NOTE: < ; nodoc> is now deprecated and will be removed in a later version.
8
+
1
9
## 0.9.4
2
10
* [ enhancement] added a ` --favicon ` option to specify a favicon to use for the
3
11
generated docs
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ export 'src/package_meta.dart';
39
39
40
40
const String name = 'dartdoc' ;
41
41
// Update when pubspec version changes.
42
- const String version = '0.9.4 ' ;
42
+ const String version = '0.9.5 ' ;
43
43
44
44
final String defaultOutDir = p.join ('doc' , 'api' );
45
45
Original file line number Diff line number Diff line change 1
1
name : dartdoc
2
2
# Also update the `version` field in lib/dartdoc.dart.
3
- version : 0.9.5-dev
3
+ version : 0.9.5
4
4
author :
Dart Team <[email protected] >
5
5
description : A documentation generator for Dart.
6
6
homepage : https://github.com/dart-lang/dartdoc
You can’t perform that action at this time.
0 commit comments