File tree 6 files changed +13
-12
lines changed 6 files changed +13
-12
lines changed Original file line number Diff line number Diff line change 1
1
language : dart
2
2
sudo : false
3
3
dart :
4
- - " dev/release/2.0.0-dev.16 .0"
4
+ - " dev/release/2.0.0-dev.22 .0"
5
5
env :
6
6
- DARTDOC_BOT=main
7
7
# TODO(devoncarew): add angulardart support
Original file line number Diff line number Diff line change 3
3
# BSD-style license that can be found in the LICENSE file.
4
4
5
5
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
7
7
- cmd : echo "Unzipping dart-sdk..."
8
8
- cmd : 7z x dart-sdk.zip -o"C:\tools" -y > nul
9
9
- set PATH=%PATH%;C:\tools\dart-sdk\bin
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ export 'src/sdk.dart';
35
35
36
36
const String name = 'dartdoc' ;
37
37
// Update when pubspec version changes.
38
- const String version = '0.15.1 ' ;
38
+ const String version = '0.16.0 ' ;
39
39
40
40
final String defaultOutDir = path.join ('doc' , 'api' );
41
41
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ packages:
7
7
name: analyzer
8
8
url: "https://pub.dartlang.org"
9
9
source: hosted
10
- version: "0.31.0-alpha.2 "
10
+ version: "0.31.1 "
11
11
args:
12
12
dependency: "direct main"
13
13
description:
@@ -86,12 +86,12 @@ packages:
86
86
source: hosted
87
87
version: "0.3.1"
88
88
front_end:
89
- dependency: transitive
89
+ dependency: "direct main"
90
90
description:
91
91
name: front_end
92
92
url: "https://pub.dartlang.org"
93
93
source: hosted
94
- version: "0.1.0-alpha.7 "
94
+ version: "0.1.0-alpha.9 "
95
95
glob:
96
96
dependency: transitive
97
97
description:
@@ -161,7 +161,7 @@ packages:
161
161
name: kernel
162
162
url: "https://pub.dartlang.org"
163
163
source: hosted
164
- version: "0.3.0-alpha.4 "
164
+ version: "0.3.0-alpha.9 "
165
165
logging:
166
166
dependency: "direct main"
167
167
description:
@@ -371,7 +371,7 @@ packages:
371
371
name: test
372
372
url: "https://pub.dartlang.org"
373
373
source: hosted
374
- version: "0.12.29 "
374
+ version: "0.12.30+2 "
375
375
tuple:
376
376
dependency: "direct main"
377
377
description:
@@ -415,4 +415,4 @@ packages:
415
415
source: hosted
416
416
version: "2.1.13"
417
417
sdks:
418
- dart: ">=1.23.0 <=2.0.0-dev.20 .0"
418
+ dart: ">=2.0.0-dev <=2.0.0-dev.22 .0"
Original file line number Diff line number Diff line change 1
1
name : dartdoc
2
2
# Also update the `version` field in lib/dartdoc.dart.
3
- version : 0.15.1
3
+ version : 0.16.0
4
4
author :
Dart Team <[email protected] >
5
5
description : A documentation generator for Dart.
6
6
homepage : https://github.com/dart-lang/dartdoc
@@ -9,9 +9,10 @@ homepage: https://github.com/dart-lang/dartdoc
9
9
environment :
10
10
sdk : ' >=1.23.0-dev.11.5 <2.0.0'
11
11
dependencies :
12
- analyzer : 0.31.0-alpha.2
12
+ analyzer : 0.31.1
13
13
args : ' >=0.13.0 <2.0.0'
14
14
collection : ^1.2.0
15
+ front_end : ^0.1.0-alpha.7
15
16
html : ' >=0.12.1 <0.14.0'
16
17
# We don't use http_parser directly; this dep exists to ensure that we get at
17
18
# least version 3.0.3 to work around an issue with 3.0.2.
Original file line number Diff line number Diff line change @@ -924,7 +924,7 @@ void main() {
924
924
});
925
925
926
926
test ('SpecialList has many inherited methods' , () {
927
- expect (SpecialList .publicInheritedMethods, hasLength (44 ));
927
+ expect (SpecialList .publicInheritedMethods, hasLength (50 ));
928
928
expect (SpecialList .publicInheritedMethods.first.name, equals ('add' ));
929
929
expect (SpecialList .publicInheritedMethods.toList ()[1 ].name,
930
930
equals ('addAll' ));
You can’t perform that action at this time.
0 commit comments