From 134f46305f121507aca22b9c75d22e7afdf264fa Mon Sep 17 00:00:00 2001 From: Janice Collins Date: Mon, 5 Oct 2020 10:08:57 -0700 Subject: [PATCH 1/3] pubspec --- dartdoc_options.yaml | 2 +- lib/src/version.dart | 2 +- pubspec.yaml | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/dartdoc_options.yaml b/dartdoc_options.yaml index afb6933882..6a6924ab84 100644 --- a/dartdoc_options.yaml +++ b/dartdoc_options.yaml @@ -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%' diff --git a/lib/src/version.dart b/lib/src/version.dart index 5af6cb1f3e..c0c9f43d8b 100644 --- a/lib/src/version.dart +++ b/lib/src/version.dart @@ -1,2 +1,2 @@ // Generated code. Do not modify. -const packageVersion = '0.34.0'; +const packageVersion = '0.35.0'; diff --git a/pubspec.yaml b/pubspec.yaml index 6dd816039e..6b39881176 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -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' @@ -24,7 +24,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 From 83d0a34ef171f4af3b0a8e351508757b2800005b Mon Sep 17 00:00:00 2001 From: Janice Collins Date: Mon, 5 Oct 2020 10:33:19 -0700 Subject: [PATCH 2/3] Update changelog --- CHANGELOG.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 96e260903c..ea59ba563a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,23 @@ +## 0.35.0 + +* Update Dart analyzer version to 0.40+ and update minimum Dart version + to 2.10. (#???? -- update after release PR is known) +* 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) From 82b01046fc481fbdebbea5704a3804b9418a8f25 Mon Sep 17 00:00:00 2001 From: Janice Collins Date: Mon, 5 Oct 2020 11:09:08 -0700 Subject: [PATCH 3/3] Update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ea59ba563a..11a2bb6a5d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ ## 0.35.0 * Update Dart analyzer version to 0.40+ and update minimum Dart version - to 2.10. (#???? -- update after release PR is known) + 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)