Skip to content

Commit c98c386

Browse files
committed
Some cleanups.
1 parent f6af166 commit c98c386

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 0.15.0
2+
* Enable `strong mode` when analyzing, which is required for some types (#1482)
3+
* Now requires Dart SDK `>=1.24.0` (as we test for [`FutureOr`][future_or])
4+
5+
[future_or]: https://github.com/dart-lang/sdk/blob/master/CHANGELOG.md#1240---12-06-2017
6+
17
## 0.14.0
28
* Fix multiple issues with properties and top level variables in cases
39
of split inheritance (#1394, #1116)

lib/dartdoc.dart

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

4747
const String name = 'dartdoc';
4848
// Update when pubspec version changes.
49-
const String version = '0.14.0';
49+
const String version = '0.15.0';
5050

5151
final String defaultOutDir = path.join('doc', 'api');
5252

lib/src/element_type.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
/// The models used to represent Dart code.
66
library dartdoc.element_type;
77

8-
import 'package:analyzer/dart/ast/ast.dart';
98
import 'package:analyzer/dart/element/element.dart';
109
import 'package:analyzer/dart/element/type.dart';
1110

pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
name: dartdoc
22
# Also update the `version` field in lib/dartdoc.dart.
3-
version: 0.14.0
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
77
environment:
8-
sdk: '>=1.23.0-dev.11.5 <2.0.0'
8+
sdk: '>=1.24.0 <2.0.0'
99
dependencies:
1010
analyzer: ^0.30.0
1111
args: ^0.13.0

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.0">
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)