Skip to content

Commit ba79e47

Browse files
committed
Merge pull request #723 from dart-lang/devoncarew_0.2.2
rev to 0.2.2
2 parents 2cd659a + 15b6b32 commit ba79e47

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.2.2
2+
* new: show the source code for methods, functions, and constructors
3+
* fix: fixed an npe when generating docs for projects without readmes
4+
15
## 0.2.1
26
* fix: documentation for fields was sometimes `null`
37

lib/dartdoc.dart

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

3131
const String name = 'dartdoc';
3232
// Update when pubspec version changes.
33-
const String version = '0.2.1';
33+
const String version = '0.2.2';
3434

3535
final String defaultOutDir = 'doc${Platform.pathSeparator}api';
3636

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.2.1
3+
version: 0.2.2
44
author: Dart Team <[email protected]>
55
description: A documentation generator for Dart.
66
homepage: https://github.com/dart-lang/dartdoc

test_package_small/lib/main.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
main(List<String> args) {
32
print('Hello world!');
43
}

0 commit comments

Comments
 (0)