Skip to content

Commit 45c38a6

Browse files
committed
0.16.0 and new analyzer
1 parent 46c8122 commit 45c38a6

File tree

6 files changed

+13
-12
lines changed

6 files changed

+13
-12
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: dart
22
sudo: false
33
dart:
4-
- "dev/release/2.0.0-dev.16.0"
4+
- "dev/release/2.0.0-dev.22.0"
55
env:
66
- DARTDOC_BOT=main
77
# TODO(devoncarew): add angulardart support

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# BSD-style license that can be found in the LICENSE file.
44

55
install:
6-
- ps: wget https://gsdview.appspot.com/dart-archive/channels/dev/raw/2.0.0-dev.16.0/sdk/dartsdk-windows-x64-release.zip -OutFile dart-sdk.zip
6+
- ps: wget https://gsdview.appspot.com/dart-archive/channels/dev/raw/2.0.0-dev.22.0/sdk/dartsdk-windows-x64-release.zip -OutFile dart-sdk.zip
77
- cmd: echo "Unzipping dart-sdk..."
88
- cmd: 7z x dart-sdk.zip -o"C:\tools" -y > nul
99
- set PATH=%PATH%;C:\tools\dart-sdk\bin

lib/dartdoc.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export 'src/sdk.dart';
3535

3636
const String name = 'dartdoc';
3737
// Update when pubspec version changes.
38-
const String version = '0.15.1';
38+
const String version = '0.16.0';
3939

4040
final String defaultOutDir = path.join('doc', 'api');
4141

pubspec.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ packages:
77
name: analyzer
88
url: "https://pub.dartlang.org"
99
source: hosted
10-
version: "0.31.0-alpha.2"
10+
version: "0.31.1"
1111
args:
1212
dependency: "direct main"
1313
description:
@@ -86,12 +86,12 @@ packages:
8686
source: hosted
8787
version: "0.3.1"
8888
front_end:
89-
dependency: transitive
89+
dependency: "direct main"
9090
description:
9191
name: front_end
9292
url: "https://pub.dartlang.org"
9393
source: hosted
94-
version: "0.1.0-alpha.7"
94+
version: "0.1.0-alpha.9"
9595
glob:
9696
dependency: transitive
9797
description:
@@ -161,7 +161,7 @@ packages:
161161
name: kernel
162162
url: "https://pub.dartlang.org"
163163
source: hosted
164-
version: "0.3.0-alpha.4"
164+
version: "0.3.0-alpha.9"
165165
logging:
166166
dependency: "direct main"
167167
description:
@@ -371,7 +371,7 @@ packages:
371371
name: test
372372
url: "https://pub.dartlang.org"
373373
source: hosted
374-
version: "0.12.29"
374+
version: "0.12.30+2"
375375
tuple:
376376
dependency: "direct main"
377377
description:
@@ -415,4 +415,4 @@ packages:
415415
source: hosted
416416
version: "2.1.13"
417417
sdks:
418-
dart: ">=1.23.0 <=2.0.0-dev.20.0"
418+
dart: ">=2.0.0-dev <=2.0.0-dev.22.0"

pubspec.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: dartdoc
22
# Also update the `version` field in lib/dartdoc.dart.
3-
version: 0.15.1
3+
version: 0.16.0
44
author: Dart Team <[email protected]>
55
description: A documentation generator for Dart.
66
homepage: https://github.com/dart-lang/dartdoc
@@ -9,9 +9,10 @@ homepage: https://github.com/dart-lang/dartdoc
99
environment:
1010
sdk: '>=1.23.0-dev.11.5 <2.0.0'
1111
dependencies:
12-
analyzer: 0.31.0-alpha.2
12+
analyzer: 0.31.1
1313
args: '>=0.13.0 <2.0.0'
1414
collection: ^1.2.0
15+
front_end: ^0.1.0-alpha.7
1516
html: '>=0.12.1 <0.14.0'
1617
# We don't use http_parser directly; this dep exists to ensure that we get at
1718
# least version 3.0.3 to work around an issue with 3.0.2.

test/model_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -924,7 +924,7 @@ void main() {
924924
});
925925

926926
test('SpecialList has many inherited methods', () {
927-
expect(SpecialList.publicInheritedMethods, hasLength(44));
927+
expect(SpecialList.publicInheritedMethods, hasLength(50));
928928
expect(SpecialList.publicInheritedMethods.first.name, equals('add'));
929929
expect(SpecialList.publicInheritedMethods.toList()[1].name,
930930
equals('addAll'));

0 commit comments

Comments
 (0)