Skip to content

Commit

Permalink
Release version 3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelstolt committed Nov 28, 2023
1 parent 6a4fa1e commit 78f6bbd
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p

## [Unreleased]

## [v3.3.0] - 2023-11-28

### Removed

- Removed support for PHP `8.0`.

## [v3.2.0] - 2023-11-08

### Added
Expand Down Expand Up @@ -225,7 +231,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p

- Initial release.

[Unreleased]: https://github.com/raphaelstolt/lean-package-validator/compare/v3.2.0...HEAD
[Unreleased]: https://github.com/raphaelstolt/lean-package-validator/compare/v3.3.0...HEAD
[v3.3.0]: https://github.com/raphaelstolt/lean-package-validator/compare/v3.2.0...v3.3.0
[v3.2.0]: https://github.com/raphaelstolt/lean-package-validator/compare/v3.1.1...v3.2.0
[v3.1.1]: https://github.com/raphaelstolt/lean-package-validator/compare/v3.1.0...v3.1.1
[v3.1.0]: https://github.com/raphaelstolt/lean-package-validator/compare/v3.0.1...v3.1.0
Expand Down
2 changes: 1 addition & 1 deletion bin/lean-package-validator
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ if (false === $autoloaded) {
}

\define('WORKING_DIRECTORY', \getcwd());
\define('VERSION', '3.2.0');
\define('VERSION', '3.3.0');

use Stolt\LeanPackage\Commands\InitCommand;
use Stolt\LeanPackage\Commands\ValidateCommand;
Expand Down
6 changes: 3 additions & 3 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ protected function createTemporaryGitattributesFile($content): bool
. '.gitattributes';


$bytesWritten = \file_put_contents($temporaryGitattributesFile, $content);
$bytesWritten = file_put_contents($temporaryGitattributesFile, $content);

return $bytesWritten >= 0;
}
Expand All @@ -116,7 +116,7 @@ protected function createTemporaryGitignoreFile($content)
. DIRECTORY_SEPARATOR
. '.gitignore';

return \file_put_contents($temporaryGitignoreFile, $content) >= 0;
return file_put_contents($temporaryGitignoreFile, $content) >= 0;
}

/**
Expand All @@ -132,6 +132,6 @@ protected function createTemporaryGlobPatternFile($content)
. DIRECTORY_SEPARATOR
. '.lpv';

return \file_put_contents($temporaryLpvFile, $content) >= 0;
return file_put_contents($temporaryLpvFile, $content) >= 0;
}
}

0 comments on commit 78f6bbd

Please sign in to comment.