Skip to content

Commit 1e60a51

Browse files
committed
Merge pull request #1157 from keertip/publish
publish 0.9.5
2 parents 9347c1a + d801824 commit 1e60a51

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
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+
19
## 0.9.4
210
* [enhancement] added a `--favicon` option to specify a favicon to use for the
311
generated docs

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.4';
42+
const String version = '0.9.5';
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-dev
3+
version: 0.9.5
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)