diff --git a/packages/devtools/CHANGELOG.md b/packages/devtools/CHANGELOG.md index 3d5292a577c..7c456ba6f97 100644 --- a/packages/devtools/CHANGELOG.md +++ b/packages/devtools/CHANGELOG.md @@ -1,3 +1,6 @@ +## 0.0.16 - 2019-04-17 +* Reduce the minimum Dart SDK requirements for activating DevTools to cover Flutter v1.2.1 (Dart v2.1) + ## 0.0.15 - 2019-04-16 * Warn users when they should be using a profile build of their application instead of a debug build. * Warn users using Microsoft browsers (IE and Edge) that they should be using Chrome to run DevTools. diff --git a/packages/devtools/lib/devtools.dart b/packages/devtools/lib/devtools.dart index 4574e04f27e..f586318dda8 100644 --- a/packages/devtools/lib/devtools.dart +++ b/packages/devtools/lib/devtools.dart @@ -5,4 +5,4 @@ /// The DevTools application version. // Note: when updating this, please update the corresponding version in the // pubspec. -const String version = '0.0.15'; +const String version = '0.0.16'; diff --git a/packages/devtools/pubspec.yaml b/packages/devtools/pubspec.yaml index ae5cf6f5727..d225507c8ed 100644 --- a/packages/devtools/pubspec.yaml +++ b/packages/devtools/pubspec.yaml @@ -3,7 +3,7 @@ description: A suite of web-based performance tooling for Dart and Flutter. # Note: when updating this version, please update the corresponding entry in # lib/devtools.dart. -version: 0.0.15 +version: 0.0.16 author: Dart Team homepage: https://github.com/flutter/devtools