From 1e43e92e425c953f7c154460f0644517ea4f9317 Mon Sep 17 00:00:00 2001 From: Laurent Laville Date: Fri, 17 May 2024 03:39:25 +0000 Subject: [PATCH] prepare bugfix release 9.3.1 --- .changes/9.3.1.md | 8 ++++++++ CHANGELOG.md | 8 ++++++++ src/Console/Application.php | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 .changes/9.3.1.md 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() {