Skip to content

Commit e5ebb7a

Browse files
authored
Prepare for dartdoc 3.1.0. (#2795)
1 parent 3a892e9 commit e5ebb7a

File tree

4 files changed

+40
-28
lines changed

4 files changed

+40
-28
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 3.1.0
2+
* This version supports the Dart language feature constructor tearoffs,
3+
pending completion by other tools.
4+
* Allow embedded type parameters in comment references. (#2772)
5+
* Add testing for constructor tearoff constant rendering. (#2780)
6+
* Do not crash on package not found, instead provide a more useful
7+
explanation for users. (#2781, #2778)
8+
* `--allow-warnings-in-packages` no longer also applies to errors.
9+
The `--allow-errors-in-packages` flag should now work as intended.
10+
(#2785)
11+
* Some additional deprecations preparing for NNBD. (#2784)
12+
113
## 3.0.0
214
* BREAKING CHANGE: Refactor of Class, Enum, and Mixin types result in some
315
deleted interfaces in templates and a change in class hierarchy. (#2770)

dartdoc_options.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
dartdoc:
22
linkToSource:
33
root: '.'
4-
uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v3.0.0/%f%#L%l%'
4+
uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v3.1.0/%f%#L%l%'

lib/src/version.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// Generated code. Do not modify.
2-
const packageVersion = '3.0.0';
2+
const packageVersion = '3.1.0';

pubspec.yaml

+26-26
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,42 @@
11
name: dartdoc
22
# Run `grind build` after updating.
3-
version: 3.0.0
3+
version: 3.1.0
44
description: A non-interactive HTML documentation generator for Dart source code.
55
homepage: https://github.com/dart-lang/dartdoc
66
environment:
77
sdk: '>=2.11.99 <3.0.0'
88

99
dependencies:
10-
analyzer: ^2.2.0
11-
args: ^2.0.0
12-
charcode: ^1.2.0
13-
collection: ^1.2.0
14-
cli_util: ^0.3.0
15-
crypto: ^3.0.0
16-
glob: ^2.0.0
10+
analyzer: ^2.3.0
11+
args: ^2.3.0
12+
charcode: ^1.3.1
13+
collection: ^1.15.0
14+
cli_util: ^0.3.3
15+
crypto: ^3.0.1
16+
glob: ^2.0.1
1717
html: ^0.15.0
18-
logging: ^1.0.0
18+
logging: ^1.0.2
1919
markdown: ^4.0.0
2020
meta: ^1.7.0
21-
package_config: ^2.0.0
22-
path: ^1.3.0
23-
pub_semver: ^2.0.0
24-
source_span: ^1.5.2
25-
yaml: ^3.0.0
21+
package_config: ^2.0.2
22+
path: ^1.8.0
23+
pub_semver: ^2.1.0
24+
source_span: ^1.8.1
25+
yaml: ^3.1.0
2626

2727
dev_dependencies:
28-
async: ^2.0.8
29-
build: ^2.0.0
30-
build_runner: ^2.0.1
31-
build_test: ^2.0.0
32-
build_version: ^2.0.1
33-
code_builder: ^4.0.0
34-
coverage: ^1.0.2
35-
dart_style: ^2.0.0
36-
grinder: ^0.9.0-nullsafety.0
37-
http: ^0.13.0
38-
pedantic: ^1.11.0
39-
test: ^1.3.0
28+
async: ^2.8.2
29+
build: ^2.1.0
30+
build_runner: ^2.1.2
31+
build_test: ^2.1.3
32+
build_version: ^2.1.0
33+
code_builder: ^4.1.0
34+
coverage: ^1.0.3
35+
dart_style: ^2.1.0
36+
grinder: ^0.9.0
37+
http: ^0.13.3
38+
pedantic: ^1.11.1
39+
test: ^1.17.12
4040

4141
executables:
4242
dartdoc: null

0 commit comments

Comments
 (0)