Skip to content

Commit 0524bb6

Browse files
authored
Prepare for dartdoc 0.35.0 (#2372)
* pubspec * Update changelog * Update CHANGELOG.md
1 parent a0cc2dc commit 0524bb6

File tree

4 files changed

+26
-6
lines changed

4 files changed

+26
-6
lines changed

CHANGELOG.md

+20
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
## 0.35.0
2+
3+
* Update Dart analyzer version to 0.40+ and update minimum Dart version
4+
to 2.10. (#2372)
5+
* Add a `nodoc` option in `dartdoc_options.yaml` to prevent all symbols
6+
declared in a file from ever being documented, similar to using `@nodoc`
7+
(#2369, #2368, #2266, #2355)
8+
* Some template interface refactors preparing for mustache changes to drop
9+
use of dart:mirrors. (#2371, #2370)
10+
* Add an feature to allow declaring a `DartdocOption`'s value to be a glob.
11+
(#2365)
12+
* **Breaking change**: The `DartdocOption` constructor interface has changed
13+
so it uses an enum instead of individual `isFile` and `isDir`.
14+
* Emit a warning rather than throwing a fatal error for a package with
15+
no libraries. (#2360, #2327)
16+
* Fix several problems with implementation chain display when there are
17+
intermediate private classes (#2358, #2290, #2094, #2354, #1623)
18+
* Fix a deadlock in `MultiFutureTracker`. (#2351)
19+
* Cache exclude values and known parts. (#2347)
20+
121
## 0.34.0
222

323
* PackageConfigProvider, MockSdk, etc for improved unit testing (#2332)

dartdoc_options.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
dartdoc:
22
linkToSource:
33
root: '.'
4-
uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v0.34.0/%f%#L%l%'
4+
uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v0.35.0/%f%#L%l%'

lib/src/version.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// Generated code. Do not modify.
2-
const packageVersion = '0.34.0';
2+
const packageVersion = '0.35.0';

pubspec.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
name: dartdoc
22
# Run `grind build` after updating.
3-
version: 0.34.0
3+
version: 0.35.0
44
description: A non-interactive HTML documentation generator for Dart source code.
55
homepage: https://github.com/dart-lang/dartdoc
66
environment:
7-
sdk: '>=2.7.0 <3.0.0'
7+
sdk: '>=2.10.0 <3.0.0'
88

99
dependencies:
10-
analyzer: ^0.39.17
10+
analyzer: ^0.40.4
1111
args: '>=1.5.0 <2.0.0'
1212
collection: ^1.2.0
1313
cli_util: '>=0.1.4 <0.3.0'
@@ -25,7 +25,7 @@ dependencies:
2525

2626
dev_dependencies:
2727
async: '>=2.0.8'
28-
build: ^1.3.0
28+
build: ^1.5.0
2929
build_runner: ^1.10.0
3030
build_version: ^2.0.1
3131
coverage: ^0.14.0

0 commit comments

Comments
 (0)