Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update: 1.0.3 #6

Merged
merged 1 commit into from
Sep 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.0.3
- Bump `image` dependency to `4.2.0`
- Fix `asset_density`s `==` nullability lint warning

## 1.0.2
- Upgrade `args` to version `2.4.2`
- Upgrade `image` to version `4.0.17`
Expand Down
2 changes: 1 addition & 1 deletion lib/src/domain/assets_entries/models/asset_density.dart
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class AssetDensity implements Comparable<AssetDensity> {
String toString() => "$_wholeNumber.${_fractionalPart}x";

@override
bool operator ==(Object? other) {
bool operator ==(Object other) {
return other is AssetDensity && other._wholeNumber == _wholeNumber && other._fractionalPart == _fractionalPart;
}

Expand Down
5 changes: 2 additions & 3 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: images_files_checker
description: A CLI tool that checks each image in the project and report missing files or incorrect image resolution.
repository: https://github.com/talesbarreto/images_files_checker
version: 1.0.2
version: 1.0.3

executables:
images_files_checker:
Expand All @@ -11,10 +11,9 @@ environment:

dependencies:
args: ^2.4.2
image: ^4.0.17
image: ^4.2.0

dev_dependencies:
lints: ">=2.0.0 <6.0.0"
test: ^1.16.0
build_runner: ^2.1.11
mockito: ^5.2.0
Loading