diff --git a/.changes/9.3.0.md b/.changes/9.3.0.md new file mode 100644 index 00000000..06833451 --- /dev/null +++ b/.changes/9.3.0.md @@ -0,0 +1,13 @@ + +## 9.3.0 - 2024-05-16 + +### Added + +- New `bootstrap` option to make it easier to load whatever you need before to run linter. +- New example (`examples/sarif_output.php`) to show how to generate a SARIF report programmatically + +### Fixed + +- [#206](https://github.com/overtrue/phplint/issues/206) : New autoloader does not respect custom `vendor-dir` configuration + +**Full Changelog**: [9.2.0...9.3.0](https://github.com/overtrue/phplint/compare/9.2.0...9.3.0) diff --git a/CHANGELOG.md b/CHANGELOG.md index f349737a..f57e41b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,19 @@ 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.0 - 2024-05-16 + +### Added + +- New `bootstrap` option to make it easier to load whatever you need before to run linter. +- New example (`examples/sarif_output.php`) to show how to generate a SARIF report programmatically + +### Fixed + +- [#206](https://github.com/overtrue/phplint/issues/206) : New autoloader does not respect custom `vendor-dir` configuration + +**Full Changelog**: [9.2.0...9.3.0](https://github.com/overtrue/phplint/compare/9.2.0...9.3.0) + ## 9.2.0 - 2024-05-03 ### Added diff --git a/Dockerfile b/Dockerfile index fe4274dd..039a5ac2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ USER appuser # Install Composer v2 then overtrue/phplint package COPY --from=composer/composer:2-bin /composer /usr/bin/composer ENV COMPOSER_ALLOW_SUPERUSER 1 -RUN composer global require --no-progress overtrue/phplint 9.2.x-dev +RUN composer global require --no-progress overtrue/phplint 9.3.x-dev # Following recommendation at https://docs.github.com/en/actions/creating-actions/dockerfile-support-for-github-actions#workdir diff --git a/composer.json b/composer.json index e3e9a79d..2ddcdc9a 100644 --- a/composer.json +++ b/composer.json @@ -66,7 +66,7 @@ ] }, "branch-alias": { - "dev-main": "9.2.x-dev" + "dev-main": "9.3.x-dev" } }, "scripts": { diff --git a/docs/installation.md b/docs/installation.md index 648013a7..57e145df 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -11,7 +11,7 @@ | Version | Status | Requirements | |:--------|:------------------------------------------|:---------------| | **9.x** | **Active development** | **PHP >= 8.0** | -| 6.x | Active support | PHP >= 8.2 | +| 6.x | End Of Life | PHP >= 8.2 | | 5.x | End Of Life | PHP >= 8.1 | | 4.x | End Of Life | PHP >= 8.0 | | 3.x | End Of Life | PHP >= 7.4 | @@ -48,7 +48,7 @@ You can also install `phplint` locally to your project with [Phive][phive] and c ```xml - + ``` diff --git a/src/Console/Application.php b/src/Console/Application.php index 04a63eb9..d0f80f5f 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.2.0'; + public const VERSION = '9.3.0'; public function __construct() {