diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e29abe..6ebfbcd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 2.1.4 + +- Adds pub topics to package metadata +- Updates minimum supported SDK version to Dart 3 +- Upgrade dependencies + ## 2.1.3 - Fix round icons on android and ability to use without monochrome ([#35](https://github.com/mrrhak/icons_launcher/pull/35)) diff --git a/analysis_options.yaml b/analysis_options.yaml index beedd08..edbe313 100644 --- a/analysis_options.yaml +++ b/analysis_options.yaml @@ -97,12 +97,10 @@ linter: - hash_and_equals - implementation_imports # - invariant_booleans # too many false positives: https://github.com/dart-lang/linter/issues/811 - - iterable_contains_unrelated_type + - collection_methods_unrelated_type # - join_return_with_assignment # not yet tested - library_names - library_prefixes - # - lines_longer_than_80_chars # not yet tested - - list_remove_unrelated_type # - literal_only_boolean_expressions # too many false positives: https://github.com/dart-lang/sdk/issues/34181 - no_adjacent_strings_in_list - no_duplicate_case_values diff --git a/example/flavor_app/pubspec.yaml b/example/flavor_app/pubspec.yaml index 8f93f15..300f727 100644 --- a/example/flavor_app/pubspec.yaml +++ b/example/flavor_app/pubspec.yaml @@ -8,7 +8,7 @@ environment: dependencies: flutter: sdk: flutter - cupertino_icons: ^1.0.5 + cupertino_icons: ^1.0.6 flutter_flavorizr: ^2.2.1 dependency_overrides: @@ -17,7 +17,7 @@ dependency_overrides: dev_dependencies: flutter_test: sdk: flutter - flutter_lints: ^2.0.1 + flutter_lints: ^2.0.3 icons_launcher: path: ../../ diff --git a/lib/src/version.dart b/lib/src/version.dart index d09e279..6a6a1c1 100644 --- a/lib/src/version.dart +++ b/lib/src/version.dart @@ -1,2 +1,2 @@ // Generated code. Do not modify. -const packageVersion = '2.1.3'; +const packageVersion = '2.1.4'; diff --git a/pubspec.yaml b/pubspec.yaml index 62cc5a1..3cf3f8e 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -4,7 +4,7 @@ maintainer: Mrr Hak homepage: https://mrrhak.com repository: https://github.com/mrrhak/icons_launcher issue_tracker: https://github.com/mrrhak/icons_launcher/issues -version: 2.1.3 +version: 2.1.4 funding: - https://ko-fi.com/mrrhak screenshots: @@ -13,7 +13,7 @@ screenshots: dependencies: args: ^2.4.2 - image: ^4.0.17 + image: ^4.1.3 path: ^1.8.2 universal_io: ^2.2.2 yaml: ^3.1.2 @@ -22,6 +22,11 @@ environment: sdk: ">=3.0.0 <4.0.0" dev_dependencies: - build_runner: ^2.3.3 + build_runner: ^2.4.6 build_version: ^2.1.1 - test: ^1.24.4 + test: ^1.24.6 + +topics: + - icons + - app-icon + - icon-launcher \ No newline at end of file