From 5d35f4d829ffb8532d345d95d3e9504ae6cd839e Mon Sep 17 00:00:00 2001 From: Bob Nystrom Date: Mon, 9 Sep 2024 17:49:25 -0700 Subject: [PATCH] Bump version to publish 2.3.7. (#1562) --- CHANGELOG.md | 2 +- lib/src/cli/formatter_options.dart | 2 +- pubspec.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ed7fb0c..bd3ad45f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 2.3.7-wip +## 2.3.7 * Allow passing a language version to `DartFomatter()`. Formatted code will be parsed at that version. If omitted, defaults to the latest version. In a diff --git a/lib/src/cli/formatter_options.dart b/lib/src/cli/formatter_options.dart index 6721ddbf..3379ac4c 100644 --- a/lib/src/cli/formatter_options.dart +++ b/lib/src/cli/formatter_options.dart @@ -13,7 +13,7 @@ import 'show.dart'; import 'summary.dart'; // Note: The following line of code is modified by tool/grind.dart. -const dartStyleVersion = '2.3.6'; +const dartStyleVersion = '2.3.7'; /// Global options that affect how the formatter produces and uses its outputs. class FormatterOptions { diff --git a/pubspec.yaml b/pubspec.yaml index dd84fd71..2992be97 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: 2.3.7-wip +version: 2.3.7 description: >- Opinionated, automatic Dart source code formatter. Provides an API and a CLI tool.