Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.

Commit b4304da

Browse files
Update the Dart language version in the pubspec generated by the dartdoc script (#116789)
1 parent 48cfe2e commit b4304da

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dev/bots/docs.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ function create_docset() {
5959
dashing_pid=$!
6060
wait $dashing_pid && \
6161
cp ./doc/flutter/static-assets/favicon.png ./flutter.docset/icon.png && \
62-
"$DART" --no-sound-null-safety --disable-dart-dev --enable-asserts ./dashing_postprocess.dart && \
62+
"$DART" --disable-dart-dev --enable-asserts ./dashing_postprocess.dart && \
6363
tar cf flutter.docset.tar.gz --use-compress-program="gzip --best" flutter.docset
6464
if [[ $? -ne 0 ]]; then
6565
>&2 echo "Dashing docset generation failed"

dev/tools/dartdoc.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Future<void> main(List<String> arguments) async {
5959
buf.writeln('homepage: https://flutter.dev');
6060
buf.writeln('version: 0.0.0');
6161
buf.writeln('environment:');
62-
buf.writeln(" sdk: '>=2.10.0 <4.0.0'");
62+
buf.writeln(" sdk: '>=2.12.0 <4.0.0'");
6363
buf.writeln('dependencies:');
6464
for (final String package in findPackageNames()) {
6565
buf.writeln(' $package:');

0 commit comments

Comments
 (0)