diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a76fb0db..b431833d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,8 @@ -# 1.19.0 +# 1.19.1 -- new lint: `user_super_initializers` +- new lint: `use_super_initializers` - new lint: `use_enums` -- new lint: `used_colored_box` +- new lint: `use_colored_box` - performance improvements for `sort_constructors` - doc improvements for `always_use_package_imports`, `avoid_print`, and `avoid_relative_lib_imports` diff --git a/lib/src/version.dart b/lib/src/version.dart index 7fc8ea65c..e7a3c9dbc 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.19.0'; +const String version = '1.19.1'; diff --git a/pubspec.yaml b/pubspec.yaml index 97809fa1a..26835c50a 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: linter -version: 1.19.0 +version: 1.19.1 description: >- The implementation of the lint rules supported by the analyzer framework.