Skip to content

Commit 9e894eb

Browse files
authored
Patch and Dev Bump to start our new release version process (flutter#4950)
Moving forward we will be doing daily dev version bumps. We have set up this process to fail if the master branch isn't on a -dev.\d+ version, so that the automation won't interfere if anyone is doing a release. This bump puts the master branch version in a place where we can start doing those daily dev bumps.
1 parent a734bdf commit 9e894eb

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

packages/devtools_app/lib/devtools.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
// that updates all versions for DevTools.
88
// Note: a regexp in tools/update_version.dart matches the following line so
99
// if you change it you must also modify tools/update_version.dart.
10-
const String version = '2.20.0';
10+
const String version = '2.21.0-dev.0';

packages/devtools_app/lib/src/framework/about_dialog.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class DevToolsAboutDialog extends StatelessWidget {
2929
mainAxisSize: MainAxisSize.min,
3030
crossAxisAlignment: CrossAxisAlignment.start,
3131
children: [
32-
Row(
32+
Wrap(
3333
children: [
3434
const SelectableText('DevTools version ${devtools.version}'),
3535
const Text(' - '),
@@ -55,7 +55,7 @@ class DevToolsAboutDialog extends StatelessWidget {
5555
...dialogSubHeader(theme, 'Contributing'),
5656
Wrap(
5757
children: const [
58-
Text('Want to contribute to DevTools? Please see our '),
58+
Text('Want to contribute to DevTools?'),
5959
_ContributingLink(),
6060
Text(' guide, or '),
6161
],

packages/devtools_app/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ publish_to: none
44

55
# Note: this version should only be updated by running tools/update_version.dart
66
# that updates all versions of devtools packages (devtools_app, devtools_test).
7-
version: 2.20.0
7+
version: 2.21.0-dev.0
88

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

@@ -25,7 +25,7 @@ dependencies:
2525
collection: ^1.15.0
2626
dds: ^2.2.2
2727
dds_service_extensions: ^1.3.1
28-
devtools_shared: 2.20.0
28+
devtools_shared: 2.21.0-dev.0
2929
file: ^6.0.0
3030
file_selector: ^0.8.0
3131
file_selector_linux: ^0.0.2
@@ -64,7 +64,7 @@ dependencies:
6464

6565
dev_dependencies:
6666
build_runner: ^2.0.4
67-
devtools_test: 2.20.0
67+
devtools_test: 2.21.0-dev.0
6868
flutter_test:
6969
sdk: flutter
7070
mockito: ^5.1.0

packages/devtools_app/web/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
application. For more information, see:
5252
https://developers.google.com/web/fundamentals/primers/service-workers -->
5353
<script>
54-
var version = '2.20.0';
54+
var version = '2.21.0-dev.0';
5555
var scriptLoaded = false;
5656
function loadMainDartJs() {
5757
if (scriptLoaded) {

packages/devtools_shared/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: devtools_shared
22
description: Package of shared structures between devtools_app, dds, and other tools.
33

4-
version: 2.20.0
4+
version: 2.21.0-dev.0
55

66
repository: https://github.com/flutter/devtools/tree/master/packages/devtools_shared
77

packages/devtools_test/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ publish_to: none
77
# When publishing new versions of this package be sure to publish a new version
88
# of package:devtools as well. package:devtools contains a compiled snapshot of
99
# this package.
10-
version: 2.20.0
10+
version: 2.21.0-dev.0
1111

1212
repository: https://github.com/flutter/devtools/tree/master/packages/devtools_test
1313

@@ -18,8 +18,8 @@ environment:
1818
dependencies:
1919
async: ^2.0.0
2020
collection: ^1.15.0
21-
devtools_shared: 2.20.0
22-
devtools_app: 2.20.0
21+
devtools_shared: 2.21.0-dev.0
22+
devtools_app: 2.21.0-dev.0
2323
flutter:
2424
sdk: flutter
2525
flutter_test:

0 commit comments

Comments
 (0)