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 version 0.32.0 #2215

Merged
merged 2 commits into from
May 14, 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
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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,
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.31.0/%f%#L%l%'
uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v0.32.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.31.0';
const packageVersion = '0.32.0';
8 changes: 4 additions & 4 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
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:
Expand Down Expand Up @@ -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
Expand Down