Bump version to publish 2.0.2.
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4903665..a3e9013 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,4 @@
-# 2.0.2-dev
+# 2.0.2
 
 * Don't unnecessarily split argument lists with `/* */` comments (#837).
 * Return correct exit code from `FormatCommand` when formatting stdin (#1035).
diff --git a/lib/src/cli/formatter_options.dart b/lib/src/cli/formatter_options.dart
index a60cc7f..ac888ab 100644
--- a/lib/src/cli/formatter_options.dart
+++ b/lib/src/cli/formatter_options.dart
@@ -13,7 +13,7 @@
 import 'summary.dart';
 
 // Note: The following line of code is modified by tool/grind.dart.
-const dartStyleVersion = '2.0.1';
+const dartStyleVersion = '2.0.2';
 
 /// Global options that affect how the formatter produces and uses its outputs.
 class FormatterOptions {
diff --git a/pubspec.yaml b/pubspec.yaml
index 7bc89ec..8665162 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.0.2-dev
+version: 2.0.2
 description: >-
   Opinionated, automatic Dart source code formatter.
   Provides an API and a CLI tool.