Skip to content

Commit

Permalink
Prep for 2.11.4 release (#3810)
Browse files Browse the repository at this point in the history
  • Loading branch information
kenzieschmoll authored Mar 8, 2022
1 parent de45cdb commit c0d2ea8
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 9 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
## 2.11.4
* Try downgraded patch versions until we find release notes [#3809](https://github.com/flutter/devtools/pull/3809)
* Fix null assertion in profile mode [#3808](https://github.com/flutter/devtools/pull/3808)

## 2.11.3
Check for CHROME_PATH env variable in devtools_shared [#3805](https://github.com/flutter/devtools/pull/3805)

## 2.11.2
* Migrate chart_trace.dart to null safety [#3782](https://github.com/flutter/devtools/pull/3782)
* Fix selection issue if file is already visible in program explorer [#3794](https://github.com/flutter/devtools/pull/3794)
* Automatic scrolling in the Program Explorer [#3786](https://github.com/flutter/devtools/pull/3786)
* Migrate analytics code to null-safety [#3790](https://github.com/flutter/devtools/pull/3790)
Expand Down
2 changes: 1 addition & 1 deletion packages/devtools_app/lib/devtools.dart
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
// that updates all versions for DevTools.
// Note: a regexp in tools/update_version.dart matches the following line so
// if you change it you must also modify tools/update_version.dart.
const String version = '2.11.3';
const String version = '2.11.4';
6 changes: 3 additions & 3 deletions packages/devtools_app/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: Web-based performance tooling for Dart and Flutter.

# 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.11.3
version: 2.11.4

homepage: https://github.com/flutter/devtools

Expand All @@ -25,7 +25,7 @@ dependencies:
collection: ^1.15.0
dds: ^2.2.0
dds_service_extensions: ^1.3.0
devtools_shared: 2.11.3
devtools_shared: 2.11.4
file: ^6.0.0
file_selector: ^0.8.0
file_selector_linux: ^0.0.2
Expand Down Expand Up @@ -57,7 +57,7 @@ dependencies:

dev_dependencies:
build_runner: ^2.0.4
devtools_test: 2.11.3
devtools_test: 2.11.4
flutter_test:
sdk: flutter
mockito: ^5.0.9
Expand Down
2 changes: 1 addition & 1 deletion packages/devtools_app/web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
application. For more information, see:
https://developers.google.com/web/fundamentals/primers/service-workers -->
<script>
var version = '2.11.3';
var version = '2.11.4';
var scriptLoaded = false;
function loadMainDartJs() {
if (scriptLoaded) {
Expand Down
2 changes: 1 addition & 1 deletion packages/devtools_shared/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: devtools_shared
description: Package of shared structures between devtools_app, dds, and other tools.

version: 2.11.3
version: 2.11.4

homepage: https://github.com/flutter/devtools

Expand Down
6 changes: 3 additions & 3 deletions packages/devtools_test/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description: A package containing shared test helpers for Dart DevTools tests.
# When publishing new versions of this package be sure to publish a new version
# of package:devtools as well. package:devtools contains a compiled snapshot of
# this package.
version: 2.11.3
version: 2.11.4

homepage: https://github.com/flutter/devtools

Expand All @@ -20,8 +20,8 @@ environment:
dependencies:
async: ^2.0.0
collection: ^1.15.0
devtools_shared: 2.11.3
devtools_app: 2.11.3
devtools_shared: 2.11.4
devtools_app: 2.11.4
flutter:
sdk: flutter
flutter_test:
Expand Down

0 comments on commit c0d2ea8

Please sign in to comment.