From 13a3a5108df85ebb0d6bcbea0b3d1da2288a249e Mon Sep 17 00:00:00 2001 From: Bob Nystrom Date: Wed, 28 Feb 2024 16:51:38 -0800 Subject: [PATCH] Get ready to publish 2.3.5. (#1412) --- 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 08cce866..78a6193f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 2.3.5-wip +## 2.3.5 * Ensure switch expressions containing line comments split (#1404). * Use language version `3.3` to parse so that code with extension types can be diff --git a/lib/src/cli/formatter_options.dart b/lib/src/cli/formatter_options.dart index e125a136..826f8fb0 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.4'; +const dartStyleVersion = '2.3.5'; /// Global options that affect how the formatter produces and uses its outputs. class FormatterOptions { diff --git a/pubspec.yaml b/pubspec.yaml index 1df67445..0d19a283 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.5-wip +version: 2.3.5 description: >- Opinionated, automatic Dart source code formatter. Provides an API and a CLI tool.