Skip to content

Commit fffa88c

Browse files
authored
0.15.0 release (#1559)
* Upgrade to 0.15.0 * One more change.. * Fine-tune changelog and assume #1558 will make it * Changelog tweak to move breaking changes to the top
1 parent f43815c commit fffa88c

File tree

5 files changed

+38
-5
lines changed

5 files changed

+38
-5
lines changed

CHANGELOG.md

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,38 @@
1-
## unreleased
1+
## 0.15.0
2+
* Breaking change: Major internal refactoring of public/private,
3+
type definitions, templates, and warnings. (#1524, #1539)
4+
* Breaking change: Allow mixins that call their super-classes. (#1555)
5+
* Breaking change: Anonymous libraries are now laid out on disk
6+
differently to avoid conflicts (#1526)
7+
* Breaking change: The meaning of --auto-include-dependencies has changed to
8+
include all libraries in any package depended on by this package (determined
9+
by the .packages file) (#1524)
10+
* Breaking change: The meaning of --include and --exclude has changed to
11+
require import paths for anonymous libraries, and accept them for other
12+
libraries. (#1524)
13+
* The Interceptor class from the SDK is now cloaked (#1524)
14+
* Type parameters for classes now appear next to them on the library page
15+
(#1558)
16+
* GFM-style tables are now supported in Dartdoc markdown (#1557, #1453)
17+
* Navigation and constructor docs now show generic types in more places
18+
(#1556, #1453)
19+
* A new parameter, --exclude-packages, now enables dartdoc to hide entire
20+
packages from --auto-include-dependencies or other --include options.
21+
* Document correct parameters for new-style generic function types
22+
(#1472)
23+
* Allow super in mixins (#1541)
24+
* Source code included with docs highlights again (#1525)
25+
* Remove constant value linking via string substitution (#1535)
26+
* Update version of mustache4dart and fix minor template errors (#1540)
27+
* Eliminate remaining places where dartdoc exposed private interfaces
28+
(#1173)
29+
* Fix private super classes appearing with dead links (#1476)
30+
* Fix resolution of generic types (#1514)
31+
* Limit width of code blocks (#1522)
232
* Add a `--json` flag to providing logging in a machine-readable format.
33+
(#1531)
34+
* Use the logging package for dartdoc output. (#1518)
35+
* Remove cc commons license text from default footer (#1262)
336

437
## 0.14.1
538
* 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.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,4 +350,4 @@ packages:
350350
source: hosted
351351
version: "2.1.13"
352352
sdks:
353-
dart: ">=1.23.0 <=2.0.0-dev.8.0"
353+
dart: ">=1.23.0 <=2.0.0-dev.10.0"

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

testing/test_package_docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8">
55
<meta http-equiv="X-UA-Compatible" content="IE=edge">
66
<meta name="viewport" content="width=device-width, initial-scale=1">
7-
<meta name="generator" content="made with love by dartdoc 0.14.2-dev">
7+
<meta name="generator" content="made with love by dartdoc 0.15.0">
88
<meta name="description" content="test_package API docs, for the Dart programming language.">
99
<title>test_package - Dart API docs</title>
1010

0 commit comments

Comments
 (0)