Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for dartdoc 0.35.0 #2372

Merged
merged 5 commits into from
Oct 6, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
## 0.35.0

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

## 0.34.0

* PackageConfigProvider, MockSdk, etc for improved unit testing (#2332)
Expand Down
2 changes: 1 addition & 1 deletion dartdoc_options.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dartdoc:
linkToSource:
root: '.'
uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v0.34.0/%f%#L%l%'
uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v0.35.0/%f%#L%l%'
2 changes: 1 addition & 1 deletion lib/src/version.dart
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// Generated code. Do not modify.
const packageVersion = '0.34.0';
const packageVersion = '0.35.0';
8 changes: 4 additions & 4 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name: dartdoc
# Run `grind build` after updating.
version: 0.34.0
version: 0.35.0
description: A non-interactive HTML documentation generator for Dart source code.
homepage: https://github.com/dart-lang/dartdoc
environment:
sdk: '>=2.7.0 <3.0.0'
sdk: '>=2.10.0 <3.0.0'

dependencies:
analyzer: ^0.39.17
analyzer: ^0.40.4
args: '>=1.5.0 <2.0.0'
collection: ^1.2.0
cli_util: '>=0.1.4 <0.3.0'
Expand All @@ -25,7 +25,7 @@ dependencies:

dev_dependencies:
async: '>=2.0.8'
build: ^1.3.0
build: ^1.5.0
build_runner: ^1.10.0
build_version: ^2.0.1
coverage: ^0.14.0
Expand Down