Skip to content

Prepare for dartdoc 3.1.0. #2795

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
Sep 20, 2021
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
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## 3.1.0
* This version supports the Dart language feature constructor tearoffs,
pending completion by other tools.
* Allow embedded type parameters in comment references. (#2772)
* Add testing for constructor tearoff constant rendering. (#2780)
* Do not crash on package not found, instead provide a more useful
explanation for users. (#2781, #2778)
* `--allow-warnings-in-packages` no longer also applies to errors.
The `--allow-errors-in-packages` flag should now work as intended.
(#2785)
* Some additional deprecations preparing for NNBD. (#2784)

## 3.0.0
* BREAKING CHANGE: Refactor of Class, Enum, and Mixin types result in some
deleted interfaces in templates and a change in class hierarchy. (#2770)
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/v3.0.0/%f%#L%l%'
uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v3.1.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 = '3.0.0';
const packageVersion = '3.1.0';
52 changes: 26 additions & 26 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,42 +1,42 @@
name: dartdoc
# Run `grind build` after updating.
version: 3.0.0
version: 3.1.0
description: A non-interactive HTML documentation generator for Dart source code.
homepage: https://github.com/dart-lang/dartdoc
environment:
sdk: '>=2.11.99 <3.0.0'

dependencies:
analyzer: ^2.2.0
args: ^2.0.0
charcode: ^1.2.0
collection: ^1.2.0
cli_util: ^0.3.0
crypto: ^3.0.0
glob: ^2.0.0
analyzer: ^2.3.0
args: ^2.3.0
charcode: ^1.3.1
collection: ^1.15.0
cli_util: ^0.3.3
crypto: ^3.0.1
glob: ^2.0.1
html: ^0.15.0
logging: ^1.0.0
logging: ^1.0.2
markdown: ^4.0.0
meta: ^1.7.0
package_config: ^2.0.0
path: ^1.3.0
pub_semver: ^2.0.0
source_span: ^1.5.2
yaml: ^3.0.0
package_config: ^2.0.2
path: ^1.8.0
pub_semver: ^2.1.0
source_span: ^1.8.1
yaml: ^3.1.0

dev_dependencies:
async: ^2.0.8
build: ^2.0.0
build_runner: ^2.0.1
build_test: ^2.0.0
build_version: ^2.0.1
code_builder: ^4.0.0
coverage: ^1.0.2
dart_style: ^2.0.0
grinder: ^0.9.0-nullsafety.0
http: ^0.13.0
pedantic: ^1.11.0
test: ^1.3.0
async: ^2.8.2
build: ^2.1.0
build_runner: ^2.1.2
build_test: ^2.1.3
build_version: ^2.1.0
code_builder: ^4.1.0
coverage: ^1.0.3
dart_style: ^2.1.0
grinder: ^0.9.0
http: ^0.13.3
pedantic: ^1.11.1
test: ^1.17.12

executables:
dartdoc: null