diff --git a/CHANGELOG.md b/CHANGELOG.md index a46d701..8fb704c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 0.4.1 +- Update dependencies + ## 0.4.0 * Ensure compatibility with Flutter 3.7 diff --git a/analysis_options.yaml b/analysis_options.yaml index 1064d69..dc058bf 100644 --- a/analysis_options.yaml +++ b/analysis_options.yaml @@ -9,7 +9,6 @@ linter: - always_declare_return_types - always_put_control_body_on_new_line # - always_put_required_named_parameters_first not custom for widget constructors - - always_require_non_null_named_parameters #- always_specify_types # This would enforce to write types literally everywhere. - annotate_overrides #- avoid_annotating_with_dynamic # Explicit annotation of dynamic as type is preferable. Also exclusive with type_annotate_public_apis @@ -32,8 +31,6 @@ linter: - avoid_renaming_method_parameters - avoid_relative_lib_imports - avoid_return_types_on_setters - - avoid_returning_null - - avoid_returning_null_for_future - avoid_returning_null_for_void - avoid_returning_this - avoid_setters_without_getters @@ -64,13 +61,10 @@ linter: #- flutter_style_todos # Flutter todos are to verbose for our requirements. - hash_and_equals - implementation_imports - - invariant_booleans - - iterable_contains_unrelated_type # - join_return_with_assignment # leads to less readable code IMHO - library_names - library_prefixes - lines_longer_than_80_chars - - list_remove_unrelated_type - literal_only_boolean_expressions - no_adjacent_strings_in_list - no_duplicate_case_values @@ -95,7 +89,6 @@ linter: - prefer_const_literals_to_create_immutables - prefer_constructors_over_static_methods - prefer_contains - - prefer_equal_for_default_values - prefer_expression_function_bodies - prefer_final_fields - prefer_final_in_for_each diff --git a/pubspec.yaml b/pubspec.yaml index ddde443..9cdc5a8 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,22 +1,22 @@ name: enough_giphy_flutter description: Add a powerful and customizable GIPHY picker into your Flutter app. -version: 0.4.0 +version: 0.4.1 homepage: https://github.com/Enough-Software/enough_giphy_flutter environment: - sdk: ">=2.12.0 <3.0.0" + sdk: ">=2.12.0 <4.0.0" flutter: ">=1.17.0" dependencies: - enough_giphy: ^0.2.0 - enough_platform_widgets: ^0.7.1 + enough_giphy: ^0.2.1 + enough_platform_widgets: ^0.7.3 flutter: sdk: flutter dev_dependencies: flutter_test: sdk: flutter - lints: ^2.0.1 + lints: ^2.1.1 # For information on the generic Dart part of this file, see the # following page: https://dart.dev/tools/pub/pubspec