diff --git a/.changes/9.3.1.md b/.changes/9.3.1.md new file mode 100644 index 00000000..97a86003 --- /dev/null +++ b/.changes/9.3.1.md @@ -0,0 +1,8 @@ + +## 9.3.1 - 2024-05-17 + +### Fixed + +- `bootstrap` option handling in wrong place + +**Full Changelog**: [9.3.0...9.3.1](https://github.com/overtrue/phplint/compare/9.3.0...9.3.1) diff --git a/CHANGELOG.md b/CHANGELOG.md index f57e41b5..44829d1e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html), and is generated by [Changie](https://github.com/miniscruff/changie). +## 9.3.1 - 2024-05-17 + +### Fixed + +- `bootstrap` option handling in wrong place + +**Full Changelog**: [9.3.0...9.3.1](https://github.com/overtrue/phplint/compare/9.3.0...9.3.1) + ## 9.3.0 - 2024-05-16 ### Added diff --git a/src/Console/Application.php b/src/Console/Application.php index d0f80f5f..44a32868 100644 --- a/src/Console/Application.php +++ b/src/Console/Application.php @@ -36,7 +36,7 @@ final class Application extends BaseApplication { public const NAME = 'phplint'; - public const VERSION = '9.3.0'; + public const VERSION = '9.3.1'; public function __construct() {