From 4c2e45623b94ffc042e556e687048bce07ca6d15 Mon Sep 17 00:00:00 2001 From: Janice Collins <jcollins@google.com> Date: Thu, 14 May 2020 11:56:56 -0700 Subject: [PATCH 1/2] Prepare for version 0.32.0 --- CHANGELOG.md | 11 +++++++++++ dartdoc_options.yaml | 2 +- lib/src/version.dart | 2 +- pubspec.yaml | 10 +++++----- 4 files changed, 18 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bb3dd3d0dd..579cc42d4a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## 0.32.0 +* Fix type exception in 2.9 dev versions of dart (#2214) +* **BREAKING** : Refactor `Container` class, changing the names + of many getters for templates. Users with custom templates + may need to update their templates (#2206, #2208). +* Refactors moving toward mono-repo support (#2204, #2203). +* Fix crash with newer analyzers and unnamed extension methods + (#2197). +* Use `flutter pub get` when appropriate instead of dart + `pub get` (#2190) + ## 0.31.0 * `--link-to-remote` is now the default. (#2147) * `--show-progress` is now the default on interactive terminals, diff --git a/dartdoc_options.yaml b/dartdoc_options.yaml index a2665be7dc..611c31cc92 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.31.0/%f%#L%l%' + uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v0.32.0/%f%#L%l%' diff --git a/lib/src/version.dart b/lib/src/version.dart index 89cb4fd67a..dfa67e1726 100644 --- a/lib/src/version.dart +++ b/lib/src/version.dart @@ -1,2 +1,2 @@ // Generated code. Do not modify. -const packageVersion = '0.31.0'; +const packageVersion = '0.32.0'; diff --git a/pubspec.yaml b/pubspec.yaml index 5bd2bc48bd..ce8fde0477 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,10 +1,10 @@ name: dartdoc # Run `grind build` after updating. -version: 0.31.0 +version: 0.32.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.8.0 <3.0.0' dependencies: analyzer: ^0.39.6 @@ -30,9 +30,9 @@ dependencies: dev_dependencies: async: '>=2.0.8' - build: ^1.0.1 - build_runner: ^1.0.0 - build_version: ^2.0.0 + build: ^1.3.0 + build_runner: ^1.10.0 + build_version: ^2.0.1 coverage: ^0.13.0 dhttpd: ^3.0.0 glob: ^1.1.5 From 7e489eeb3295fbdd39b6121247e0c5e46f0c3b5d Mon Sep 17 00:00:00 2001 From: Janice Collins <jcollins@google.com> Date: Thu, 14 May 2020 14:09:56 -0700 Subject: [PATCH 2/2] Revert to 2.7.0 for sdk constraint --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index ce8fde0477..20e5f20ee7 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -4,7 +4,7 @@ version: 0.32.0 description: A non-interactive HTML documentation generator for Dart source code. homepage: https://github.com/dart-lang/dartdoc environment: - sdk: '>=2.8.0 <3.0.0' + sdk: '>=2.7.0 <3.0.0' dependencies: analyzer: ^0.39.6