Skip to content

Commit

Permalink
1.7.0 (#2739)
Browse files Browse the repository at this point in the history
* 1.7.0

* update

* version bump
  • Loading branch information
pq authored Jun 30, 2021
1 parent 0f0540b commit 422981f
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 12 deletions.
23 changes: 13 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
# master

- update `use_setters_to_change_properties` to only highlight a method name,
not the entire body and doc comment.
- update `unnecessary_getters_setters` to allow otherwise "unnecessary" getters
and setters with annotations.
- update `missing_whitespace_between_adjacent_strings` to allow String
interpolations at the beginning and end of String literals.
- update `unnecessary_getters_setters` to allow for setters with non-basic
assignments (for example, `??=` or `+=`).
# 1.7.0

- fixed case-sensitive false positive in `use_full_hex_values_for_flutter_colors`
- improved try-block and switch statement flow analysis for
`use_build_context_synchronously`
- updated `use_setters_to_change_properties` to only highlight a method name,
not the entire body and doc comment
- updated `unnecessary_getters_setters` to allow otherwise "unnecessary" getters
and setters with annotations
- updated `missing_whitespace_between_adjacent_strings` to allow String
interpolations at the beginning and end of String literals
- updated `unnecessary_getters_setters` to allow for setters with non-basic
assignments (for example, `??=` or `+=`)

# 1.6.1

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.6.1';
const String version = '1.7.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.6.1
version: 1.7.0

description: >-
The implementation of the lint rules supported by the analyzer framework.
Expand Down

0 comments on commit 422981f

Please sign in to comment.