1.26.0 (#3499)

* 1.26.0

* de-dup

* + combinators_ordering
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 70bffbd..b6f5d83 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,7 +1,19 @@
-# 1.26.0-dev
+# 1.26.0
 
+- new lint: `combinators_ordering`
+- fixed `use_colored_box` and `use_decorated_box` to not over-report
+  on containers without a child
 - fixed false positive for `unnecessary_parenthesis` on a map-or-set
   literal at the start of an expression statement
+- fixed false positive for `prefer_final_locals` reporting on fields
+- fixed `unnecessary_overrides` to allow overrides on `@Protected`
+  members
+- fixed `avoid_multiple_declarations_per_line` false positive in
+  `for` statements
+- fixed `prefer_final_locals` false positive on declaration lists
+  with at least one non-final variable
+- fixed `use_build_context_synchronously` to handle `await`s in
+  `if` conditions
 
 # 1.25.0
 
diff --git a/lib/src/version.dart b/lib/src/version.dart
index 1926842..2a919c3 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.26.0-dev';
+const String version = '1.26.0';
diff --git a/pubspec.yaml b/pubspec.yaml
index 448dc40..bd51b7e 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,5 +1,5 @@
 name: linter
-version: 1.26.0-dev
+version: 1.26.0
 
 description: >-
   The implementation of the lint rules supported by the analyzer framework.