Skip to content

Commit 37273d8

Browse files
authored
Prepare for 0.19.1. (#1696)
* Prepare for 0.19.1. * Update CHANGELOG
1 parent c37386a commit 37273d8

File tree

5 files changed

+17
-19
lines changed

5 files changed

+17
-19
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
## 0.19.1
22
* Update `package:markdown` to `2.0.0`, which includes many improvements –
33
especially to the parsing of links.
4+
* Update analyzer to 0.32.0, mustache4dart to 2.1.2, and grinder for 0.8.2 for Dart 2 fixes.
5+
* Fix bug where --version printed help instead of the version number. (#1692)
6+
* Switch dartdoc_test to an integration test and add basic Dart 2.0
7+
integration tests.
8+
* Do not crash on unversioned packages (#1688).
49

510
## 0.19.0
611
* Build documentation through the Package object (#1659)

lib/dartdoc.dart

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

3838
const String name = 'dartdoc';
3939
// Update when pubspec version changes.
40-
const String dartdocVersion = '0.19.1-dev';
40+
const String dartdocVersion = '0.19.1';
4141

4242
/// Helper class to initialize the default generators since they require
4343
/// GeneratorContext.

pubspec.lock

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ packages:
77
name: analyzer
88
url: "https://pub.dartlang.org"
99
source: hosted
10-
version: "0.31.2-alpha.2"
10+
version: "0.32.0"
1111
args:
1212
dependency: "direct main"
1313
description:
@@ -22,13 +22,6 @@ packages:
2222
url: "https://pub.dartlang.org"
2323
source: hosted
2424
version: "2.0.6"
25-
barback:
26-
dependency: transitive
27-
description:
28-
name: barback
29-
url: "https://pub.dartlang.org"
30-
source: hosted
31-
version: "0.15.2+14"
3225
boolean_selector:
3326
dependency: transitive
3427
description:
@@ -91,7 +84,7 @@ packages:
9184
name: front_end
9285
url: "https://pub.dartlang.org"
9386
source: hosted
94-
version: "0.1.0-alpha.12"
87+
version: "0.1.0"
9588
glob:
9689
dependency: transitive
9790
description:
@@ -154,7 +147,7 @@ packages:
154147
name: kernel
155148
url: "https://pub.dartlang.org"
156149
source: hosted
157-
version: "0.3.0-alpha.12"
150+
version: "0.3.0"
158151
logging:
159152
dependency: "direct main"
160153
description:
@@ -175,14 +168,14 @@ packages:
175168
name: matcher
176169
url: "https://pub.dartlang.org"
177170
source: hosted
178-
version: "0.12.1+4"
171+
version: "0.12.2+1"
179172
meta:
180173
dependency: "direct dev"
181174
description:
182175
name: meta
183176
url: "https://pub.dartlang.org"
184177
source: hosted
185-
version: "1.1.2"
178+
version: "1.1.5"
186179
mime:
187180
dependency: transitive
188181
description:
@@ -357,7 +350,7 @@ packages:
357350
name: test
358351
url: "https://pub.dartlang.org"
359352
source: hosted
360-
version: "0.12.32+1"
353+
version: "0.12.38+1"
361354
tuple:
362355
dependency: "direct main"
363356
description:
@@ -401,4 +394,4 @@ packages:
401394
source: hosted
402395
version: "2.1.13"
403396
sdks:
404-
dart: ">=2.0.0-dev.23.0 <=2.0.0-dev.55.0"
397+
dart: ">=2.0.0-dev.54.0 <=2.0.0-dev.55.0"

pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
name: dartdoc
22
# Also update the `version` field in lib/dartdoc.dart.
3-
version: 0.19.1-dev
3+
version: 0.19.1
44
author: Dart Team <[email protected]>
55
description: A documentation generator for Dart.
66
homepage: https://github.com/dart-lang/dartdoc
77
environment:
88
sdk: '>=2.0.0-dev.54.0 <3.0.0'
99
dependencies:
10-
analyzer: '0.31.2-alpha.2'
10+
analyzer: 0.32.0
1111
args: '>=0.13.0 <2.0.0'
1212
collection: ^1.2.0
13-
front_end: ^0.1.0-alpha.12
13+
front_end: ^0.1.0
1414
html: '>=0.12.1 <0.14.0'
1515
# We don't use http_parser directly; this dep exists to ensure that we get at
1616
# least version 3.0.3 to work around an issue with 3.0.2.

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.19.1-dev">
7+
<meta name="generator" content="made with love by dartdoc 0.19.1">
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)