Skip to content

Prepare for dartdoc 0.30.4. #2181

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 1 commit into from
Apr 15, 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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## 0.30.4
* Fix regression in canonicalization from extension methods. (#2099).
* Do not throw if a const constructor's staticElement can not be resolved
(#2176, #2143).
* Hide non-local embedded SDKs, preventing Flutter's sky_engine from
being documented by default with Flutter packages (#1949, #2175).
* Fix a problem with reentrance on TopLevelVariable doc caching. (#2173, #2143)
* A batch of tweaks for the new markdown output templates (#2162)

## 0.30.3
* Add support for `Never` type from analyzer (#2167, #2170).
* First markdown renderers landed (#2152) and dartdoc can sometimes
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.30.3/%f%#L%l%'
uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v0.30.4/%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.30.3';
const packageVersion = '0.30.4';
6 changes: 3 additions & 3 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.30.3
version: 0.30.4
description: A non-interactive HTML documentation generator for Dart source code.
homepage: https://github.com/dart-lang/dartdoc
environment:
sdk: '>=2.6.0 <3.0.0'
sdk: '>=2.7.0 <3.0.0'

dependencies:
analyzer: ^0.39.4
analyzer: ^0.39.6
args: '>=1.5.0 <2.0.0'
collection: ^1.2.0
crypto: ^2.0.6
Expand Down