Skip to content

Prepare for version 0.32.0 #2215

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

Merged
merged 2 commits into from
May 14, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
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';
10 changes: 5 additions & 5 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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'
Copy link
Member

@devoncarew devoncarew May 14, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Confirming that we do only what this new version of dartdoc available to people on 2.8.0+?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I didn't test it on anything less than 2.8.x which is why I updated the constraint. The tests pass on 2.7 though so, reverted this change.


dependencies:
analyzer: ^0.39.6
Expand All @@ -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