1.13.0 (#3021)

* 1.13.0

* 1.13.0

* + while(true) fix
diff --git a/CHANGELOG.md b/CHANGELOG.md
index eb17ec3..9471dd2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,11 @@
+# 1.13.0
+
+- allow `while (true) { ...}` in `literal_only_boolean_expressions`
+- fixed `file_names` to report at the start of the file (not the entire 
+  compilation unit)
+- fixed `prefer_collection_literals` named typed param false positive
+- control flow improvements for `use_build_context_synchronously`
+
 # 1.12.0
 
 - fixed `unnecessary_lambdas` false positive for const constructor invocations
diff --git a/lib/src/version.dart b/lib/src/version.dart
index 4856814..ccb9d80 100644
--- a/lib/src/version.dart
+++ b/lib/src/version.dart
@@ -3,4 +3,4 @@
 // BSD-style license that can be found in the LICENSE file.
 
 /// Package version.  Synchronized w/ pubspec.yaml.
-const String version = '1.12.0';
+const String version = '1.13.0';
diff --git a/pubspec.yaml b/pubspec.yaml
index 97c90c1..448193a 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,5 +1,5 @@
 name: linter
-version: 1.12.0
+version: 1.13.0
 
 description: >-
   The implementation of the lint rules supported by the analyzer framework.