Skip to content

Commit

Permalink
1.26.0 (#3499)
Browse files Browse the repository at this point in the history
* 1.26.0

* de-dup

* + combinators_ordering
  • Loading branch information
pq authored Jul 11, 2022
1 parent 8053b74 commit b4afc10
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion lib/src/version.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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';
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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.
Expand Down

0 comments on commit b4afc10

Please sign in to comment.