Bump to release 0.2.14. (#575)
diff --git a/CHANGELOG.md b/CHANGELOG.md index 8dde679..cb432b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md
@@ -1,6 +1,12 @@ +# 0.2.14 + +* Update to analyzer 0.29.3. This should make dart_style a little more resilient + to breaking changes in analyzer that add support for new syntax that + dart_style can't format yet. + # 0.2.13 -* Support generic method *parameters* as well as arguments. +* Support generic method *parameters* as well as arguments. # 0.2.12 @@ -19,8 +25,8 @@ # 0.2.10 -* Handle metadata annotations before parameters with trailing commas (#520). -* Always split enum declarations if they end in a trailing comma (#529). +* Handle metadata annotations before parameters with trailing commas (#520). +* Always split enum declarations if they end in a trailing comma (#529). * Add `--set-exit-if-changed` to set the exit code on a change (#365). # 0.2.9
diff --git a/bin/format.dart b/bin/format.dart index 3e89f78..a003f8e 100644 --- a/bin/format.dart +++ b/bin/format.dart
@@ -14,7 +14,7 @@ import 'package:dart_style/src/source_code.dart'; // Note: The following line of code is modified by tool/grind.dart. -const version = "0.2.13"; +const version = "0.2.14"; void main(List<String> args) { var parser = new ArgParser(allowTrailingOptions: true);
diff --git a/pubspec.yaml b/pubspec.yaml index d9f68dc..da0a907 100644 --- a/pubspec.yaml +++ b/pubspec.yaml
@@ -1,6 +1,6 @@ name: dart_style # Note: See tool/grind.dart for how to bump the version. -version: 0.2.13 +version: 0.2.14 author: Dart Team <misc@dartlang.org> description: Opinionated, automatic Dart source code formatter. homepage: https://github.com/dart-lang/dart_style