1.10.0 (#2888)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7b29df0..ff7fb44 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,15 @@
+# 1.10.0
+
+- improved regular expression parsing performance for common checks 
+  (`camel_case_types`, `file_names`, etc.)
+- (internal) migrated to analyzer 2.1.0 APIs
+- fixed false positive in `use_build_context_synchronously` in awaits inside 
+  anonymous functions
+- fixed `overridden_fields` false positive w/ static fields
+- fixed false positive in `avoid_null_checks_in_equality_operators` w/ 
+  non-nullable params
+- fixed false positive for deferred imports in `prefer_const_constructors`
+
 # 1.9.0
 
 - marked `avoid_dynamic_calls` stable
diff --git a/lib/src/version.dart b/lib/src/version.dart
index a9099f7..cfa8ec5 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.9.0';
+const String version = '1.10.0';
diff --git a/pubspec.yaml b/pubspec.yaml
index 66263bc..2658000 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,5 +1,5 @@
 name: linter
-version: 1.9.0
+version: 1.10.0
 
 description: >-
   The implementation of the lint rules supported by the analyzer framework.