Skip to content

Commit 39cec16

Browse files
authored
Prepare for version 0.36.0. (#2399)
1 parent 7f46b5d commit 39cec16

File tree

4 files changed

+24
-4
lines changed

4 files changed

+24
-4
lines changed

CHANGELOG.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
## 0.36.0
2+
3+
* Fix problem with linking to non-canonical elements via documentation
4+
references. (#2397, #2389)
5+
* Allow for markdown 3.0.0. (#2394)
6+
* **Breaking change** Behavior of `--exclude-packages` is changed so that
7+
packages so excluded will never be treated as "remote". This version is now
8+
incompatible with old workarounds for #1431 (and those workarounds are no
9+
longer needed). Also removes `PackageGraph.packageDocumentedFor`.
10+
(#2387, #2382, #1431)
11+
* Enable NNBD support by default in dartdoc. If a package is non-nullable,
12+
it will now be documented that way (with null safety tags). No change in
13+
behavior for packages that have not been migrated. (#2384)
14+
* **Breaking change** Adjust interfaces for mustache and remove constant
15+
templates, including removing `TemplateData.packageGraph`. (#2375, #2373,
16+
#2379)
17+
* Internal type changes for upcoming analyzer 0.41 (#2380, #2392)
18+
* **Breaking change** Remove typeParameters setter for ModelFunctionTyped and
19+
change Typedef inheritance (#2376)
20+
121
## 0.35.0
222

323
* Update Dart analyzer version to 0.40+ and update minimum Dart version
@@ -162,7 +182,7 @@
162182

163183
## 0.30.1
164184
* A more complete fix for the broken search box. (#2125, #2124)
165-
* Fix the "--rel-canonical-prefix" flag post `base href`. (#2126, #2122)
185+
* Fix the "--rel-canonical-prefix" flag post `base href`. (#2126, #2122)
166186
* Tool change: `grind serve-pub-package` can now serve packages depending
167187
on flutter for debugging purposes (#2130)
168188
* More internal changes preparing for markdown output (#2138, #2140, #2132,

dartdoc_options.yaml

Lines changed: 1 addition & 1 deletion
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/v0.35.0/%f%#L%l%'
4+
uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v0.36.0/%f%#L%l%'

lib/src/version.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// Generated code. Do not modify.
2-
const packageVersion = '0.35.0';
2+
const packageVersion = '0.36.0';

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: dartdoc
22
# Run `grind build` after updating.
3-
version: 0.35.0
3+
version: 0.36.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)