Skip to content

Commit ca417f7

Browse files
committed
Release 5.2.0
1 parent 6bd5e20 commit ca417f7

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
77

88
## [Unreleased]
99

10+
11+
## [v5.2.0] - 2025-09-26
12+
13+
### Added
14+
- New `--dry-run` option for the `init` command.
15+
1016
## [v5.1.0] - 2025-09-26
1117

1218
### Added
@@ -424,7 +430,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
424430

425431
- Initial release.
426432

427-
[Unreleased]: https://github.com/raphaelstolt/lean-package-validator/compare/v5.1.0...HEAD
433+
[Unreleased]: https://github.com/raphaelstolt/lean-package-validator/compare/v5.2.0...HEAD
434+
[v5.2.0]: https://github.com/raphaelstolt/lean-package-validator/compare/v5.1.0...v5.2.0
428435
[v5.1.0]: https://github.com/raphaelstolt/lean-package-validator/compare/v5.0.0...v5.1.0
429436
[v5.0.0]: https://github.com/raphaelstolt/lean-package-validator/compare/v4.7.1...v5.0.0
430437
[v4.7.1]: https://github.com/raphaelstolt/lean-package-validator/compare/v4.7.0...v4.7.1

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,8 +217,10 @@ lean-package-validator init [<directory>]
217217

218218
The `--overwrite|-o` option overwrites an existing `.lpv` file.
219219

220-
The `--preset` option allows to choose from a predefined set of glob pattern.
221-
Available presets are `PHP`, `Python`, `Rust`, `JavaScript`, and `Go`. With `PHP` being the default.
220+
The `--preset` option allows choosing from a predefined set of glob pattern. Available presets are `PHP`, `Python`, `Rust`,
221+
`JavaScript`, and `Go`. With `PHP` being the default.
222+
223+
The `--dry-run` option will show the content of the `.lpv` file that would be created.
222224

223225
#### Tree command
224226

bin/lean-package-validator

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ if (false === $autoloaded) {
2222
}
2323

2424
\define('WORKING_DIRECTORY', \getcwd());
25-
\define('VERSION', '5.1.0');
25+
\define('VERSION', '5.2.0');
2626

2727
use Stolt\LeanPackage\Commands\CreateCommand;
2828
use Stolt\LeanPackage\Commands\InitCommand;

0 commit comments

Comments
 (0)