Skip to content

Commit 100f8cb

Browse files
committed
Upgrade to 0.15.0
1 parent 95a45b1 commit 100f8cb

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

CHANGELOG.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
1-
## unreleased
1+
## 0.15.0
2+
* Allow super in mixins (#1541)
3+
* Anonymous libraries are now laid out on disk differently
4+
to avoid conflicts (#1526)
5+
* Source code included with docs highlights again (#1525)
6+
* Remove constant value linking via string substitution (#1535)
7+
* Update version of mustache4dart (#1540)
8+
* Eliminate remaining places where dartdoc exposed private interfaces
9+
(#1173)
10+
* Fix private super classes appearing with dead links (#1476)
11+
* Major internal refactoring of public/private, type definitions,
12+
templates, and warnings (#1394, #1539)
13+
* Fix resolution of generic types (#1514)
14+
* Limit width of code blocks (#1522)
215
* Add a `--json` flag to providing logging in a machine-readable format.
16+
(#1531)
17+
* Use the logging package for dartdoc output. (#1518)
18+
* Remove cc commons license text from default footer (#1262)
319

420
## 0.14.1
521
* Add better support for GenericFunctionTypeElementImpl (#1506, #1509)

lib/dartdoc.dart

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

3636
const String name = 'dartdoc';
3737
// Update when pubspec version changes.
38-
const String version = '0.14.2-dev';
38+
const String version = '0.15.0';
3939

4040
final String defaultOutDir = path.join('doc', 'api');
4141

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.14.2-dev
3+
version: 0.15.0
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)