Skip to content

Commit a05662a

Browse files
authored
Prepare for dartdoc 0.28.1 (#1920)
* Prepare for dartdoc 0.28.1 * Add the upcoming fix to three-pane scrolling to the changelog
1 parent 2ac92c6 commit a05662a

File tree

4 files changed

+24
-4
lines changed

4 files changed

+24
-4
lines changed

Diff for: CHANGELOG.md

+20
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
## 0.28.1
2+
* Reenable three-pane scrolling in Chrome 72 (#1922, #1921)
3+
* A new version of the highlightjs pack supports syntax highlighting for
4+
SCSS. (#1906, #1907)
5+
* Allow manually-specified links to source code, appearing as a small icon
6+
near the top of each element's page (#1913, #1454, #1892)
7+
* Dartdoc can be used just to generate warnings by passing --no-generate-docs
8+
(#1909, #1537).
9+
* Dartdoc's default CSS now more closely resembles dartlang.org, with some
10+
miscellaneous alignment tweaks, Roboto font, and use of `:hover` to highlight
11+
links (#1916, #1372)
12+
* Viewport parameters for mobile now prevent "stuck page" syndrome (#1916,
13+
#1911). Overscroll is now permitted for mobile.
14+
* Fix a problem where we don't render greater than symbols in the header
15+
for Chrome 72 (#1919, #1918)
16+
* Dartdoc now remembers scroll positions for all three columns while
17+
navigating (#1917, #1288, #1372, #779, #1870)
18+
* Update analyzer package to 0.35.0 and several internal test/coverage
19+
infrastructure fixes.
20+
121
## 0.28.0
222
* Fix a crash when a Dart library doesn't have the .dart suffix (#1897)
323
* Fix a crash when a Dart file is loaded with an unresolvable

Diff for: 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/v0.28.0/%f%#L%l%'
4+
uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v0.28.1/%f%#L%l%'

Diff for: 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 = '0.28.0';
2+
const packageVersion = '0.28.1';

Diff for: pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
name: dartdoc
22
# Also update the `version` field in lib/dartdoc.dart.
3-
version: 0.28.0
3+
version: 0.28.1
44
author: Dart Team <[email protected]>
55
description: A documentation generator for Dart.
66
homepage: https://github.com/dart-lang/dartdoc
77
environment:
88
sdk: '>=2.1.0-dev.9.4 <3.0.0'
99

1010
dependencies:
11-
analyzer: ^0.34.1
11+
analyzer: ^0.35.0
1212
args: '>=1.4.1 <2.0.0'
1313
collection: ^1.2.0
1414
crypto: ^2.0.6

0 commit comments

Comments
 (0)