From 8df008e51a1acdaeb7c0c077956760e2226e6254 Mon Sep 17 00:00:00 2001 From: Bob Nystrom Date: Tue, 21 Nov 2023 11:24:17 -0800 Subject: [PATCH] Bump version to public 2.3.4. (#1327) This commit has already been rolled into the SDK and internally, so getting ready to publish a new version of the dart_style package. --- 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 2de8731c..2f48e41c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 2.3.4-wip +## 2.3.4 * Add `tall-style` experiment flag to enable the in-progress unstable new formatting style (#1253). diff --git a/lib/src/cli/formatter_options.dart b/lib/src/cli/formatter_options.dart index c6b80978..e125a136 100644 --- a/lib/src/cli/formatter_options.dart +++ b/lib/src/cli/formatter_options.dart @@ -11,7 +11,7 @@ import 'show.dart'; import 'summary.dart'; // Note: The following line of code is modified by tool/grind.dart. -const dartStyleVersion = '2.3.3'; +const dartStyleVersion = '2.3.4'; /// Global options that affect how the formatter produces and uses its outputs. class FormatterOptions { diff --git a/pubspec.yaml b/pubspec.yaml index 0db4c822..91ce3d3f 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.4-wip +version: 2.3.4 description: >- Opinionated, automatic Dart source code formatter. Provides an API and a CLI tool.