Skip to content

Commit 1a3b3aa

Browse files
authored
Merge pull request #1222 from dart-lang/0.9.7
0.9.7
2 parents 18535ec + a5ad824 commit 1a3b3aa

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
2+
## 0.9.7
3+
* fix the display of long constants
4+
* fixed an issue with duplicate libraries in SDK
5+
* show source code for more element types
6+
* fix for issue with references in parameters and return type pointing to wrong element with same name
7+
* updated to a new verion of the markdown library
8+
* fix signatures for functions with typedef params (#1137)
9+
* make dartdoc strong-mode clean (#1205)
10+
* fix an issue w/ references in dartdoc not being hyperlinked
11+
* show 'abstract' for methods that are abstract
12+
* show the full value of enums
13+
* cleanup bin/dartdoc to use public dartdoc API (#1199)
14+
* add contribution instructions
15+
116
## 0.9.6+2
217
* [bug] fix an issue involving escaping constants (#1084).
318
* [health] removed a dev dependency

lib/dartdoc.dart

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

4141
const String name = 'dartdoc';
4242
// Update when pubspec version changes.
43-
const String version = '0.9.6+2';
43+
const String version = '0.9.7';
4444

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

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.6+2
3+
version: 0.9.7
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)