Skip to content

Commit c2f284f

Browse files
authored
Update pubspec and changelog for 4.0.0 (#2823)
1 parent 6ce99b5 commit c2f284f

File tree

4 files changed

+19
-7
lines changed

4 files changed

+19
-7
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 4.0.0
2+
* BREAKING CHANGE: Refactors to support NNBD and adapt to new analyzer
3+
changes are technically semver breaking. If you make extensive use of
4+
the `documentationComment` getter on `ModelElement` or other deep
5+
structural elements in dartdoc or custom templates, they could break
6+
dependent code. (#2819, #2818, #2817, #2806, #2798)
7+
* BREAKING CHANGE: Remove a large number of long-standing deprecated
8+
symbols in dartdoc. (#2821)
9+
* Fix a problem where certain comment reference strings could
10+
crash the parser. (#2813, #2808)
11+
* Fix an assert in canonicalization for enums. (#2812)
12+
113
## 3.1.0
214
* This version supports the Dart language feature constructor tearoffs,
315
pending completion by other tools.

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.1.0/%f%#L%l%'
4+
uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v4.0.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.1.0';
2+
const packageVersion = '4.0.0';

pubspec.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
name: dartdoc
22
# Run `grind build` after updating.
3-
version: 3.1.0
3+
version: 4.0.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.3.0
10+
analyzer: ^2.4.0
1111
args: ^2.3.0
1212
charcode: ^1.3.1
1313
collection: ^1.15.0
14-
cli_util: ^0.3.3
14+
cli_util: ^0.3.4
1515
crypto: ^3.0.1
1616
glob: ^2.0.1
1717
html: ^0.15.0
@@ -32,10 +32,10 @@ dev_dependencies:
3232
build_version: ^2.1.0
3333
code_builder: ^4.1.0
3434
coverage: ^1.0.3
35-
dart_style: ^2.1.0
35+
dart_style: ^2.2.0
3636
grinder: ^0.9.0
3737
http: ^0.13.3
38-
pedantic: ^1.11.1
38+
lints: ^1.0.1
3939
test: ^1.17.12
4040

4141
executables:

0 commit comments

Comments
 (0)