Skip to content

Commit

Permalink
Prepare for release 2.40.0 (#8398)
Browse files Browse the repository at this point in the history
  • Loading branch information
kenzieschmoll authored Oct 3, 2024
1 parent 07149b8 commit f5e84f9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion flutter-candidate.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5dff2b54f93ebbc5e711b5fc68d52cd275be9b07
ec2e12ba5099de6355f65fb70b1b237196f8d254
2 changes: 1 addition & 1 deletion packages/devtools_app/lib/devtools.dart
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
// the constant declaration `const version =`.
// If you change the declaration you must also modify the regex in
// tools/update_version.dart.
const version = '2.40.0-dev.2';
const version = '2.40.0';
2 changes: 1 addition & 1 deletion packages/devtools_app/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ publish_to: none

# Note: this version should only be updated by running tools/update_version.dart
# that updates all versions of devtools packages (devtools_app, devtools_test).
version: 2.40.0-dev.2
version: 2.40.0

repository: https://github.com/flutter/devtools/tree/master/packages/devtools_app

Expand Down
3 changes: 2 additions & 1 deletion tool/lib/commands/shared.dart
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ extension BuildCommandArgsExtension on ArgParser {
void addWasmFlag() {
addFlag(
BuildCommandArgs.wasm.flagName,
defaultsTo: false,
defaultsTo: true,
negatable: true,
help: 'Whether to build DevTools with dart2wasm instead of dart2js.',
);
}
Expand Down

0 comments on commit f5e84f9

Please sign in to comment.