Skip to content

Commit 7fd237d

Browse files
authored
Merge pull request #2773 from jcollins-g/dartdoc-3.0.0
Prepare for dartdoc 3.0.0.
2 parents 4e73d72 + 058044e commit 7fd237d

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## 3.0.0
2+
* BREAKING CHANGE: Refactor of Class, Enum, and Mixin types result in some
3+
deleted interfaces in templates and a change in class hierarchy. (#2770)
4+
* The experimental 'constructor-tearoffs' feature has been partially
5+
implemented in dartdoc and should work in simple cases. (#2655, #2770,
6+
#2768, #2766, #2763).
7+
* BREAKING CHANGE: The old lookup code has been deleted, along with the
8+
`--no-enhanced-reference-lookup` flag. (#2765)
9+
* Deprecated uses of pub have been removed. (#2764)
10+
* Some internal refactors to support NNBD migration.
11+
112
## 2.0.0
213
* BREAKING CHANGE: changes to dartdoc options API
314
to prepare for NNBD migration (#2745, #2744).

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/v2.0.0/%f%#L%l%'
4+
uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v3.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 = '2.0.0';
2+
const packageVersion = '3.0.0';

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: dartdoc
22
# Run `grind build` after updating.
3-
version: 2.0.0
3+
version: 3.0.0
44
description: A non-interactive HTML documentation generator for Dart source code.
55
homepage: https://github.com/dart-lang/dartdoc
66
environment:

0 commit comments

Comments
 (0)