Skip to content
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,5 +1,9 @@
# Changelog

## 7.5.10

- Renamed `tools/` to `tool/` as suggestion of the Dart team to follow the standard convention for Dart CLI tools.

## 7.5.9

- Added `ThemedPasswordInput` widget with built-in password visibility toggle, strength level indicator, and requirement validation (lowercase, uppercase, digit, special character). Supports `LayrzAppLocalizations` for i18n.
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ test:
.PHONY: coverage
coverage:
flutter test --coverage
@dart run tools/coverage_report.dart
@dart run tool/coverage_report.dart

.PHONY: coverage-summary
coverage-summary:
flutter test --coverage
@dart run tools/coverage_report.dart --summary
@dart run tool/coverage_report.dart --summary
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ packages:
path: ".."
relative: true
source: path
version: "7.5.9"
version: "7.5.10"
leak_tracker:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: layrz_theme
description: Layrz standard styling library for Flutter. Widget library following the Material Design 3 guidelines, with a focus on reliavility and functionality.
version: "7.5.9"
version: "7.5.10"
homepage: https://theme.layrz.com
repository: https://github.com/goldenm-software/layrz_theme

Expand Down
File renamed without changes.