Skip to content

Commit

Permalink
prepare release 9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
llaville committed May 16, 2024
1 parent df00246 commit 9cba6a1
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 5 deletions.
13 changes: 13 additions & 0 deletions .changes/9.3.0.md
Original file line number Diff line number Diff line change
@@ -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)
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
]
},
"branch-alias": {
"dev-main": "9.2.x-dev"
"dev-main": "9.3.x-dev"
}
},
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down Expand Up @@ -48,7 +48,7 @@ You can also install `phplint` locally to your project with [Phive][phive] and c
```xml
<?xml version="1.0" encoding="UTF-8"?>
<phive xmlns="https://phar.io/phive">
<phar name="overtrue/phplint" version="^9.2" copy="false" />
<phar name="overtrue/phplint" version="^9.3" copy="false" />
</phive>
```

Expand Down
2 changes: 1 addition & 1 deletion src/Console/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -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()
{
Expand Down

0 comments on commit 9cba6a1

Please sign in to comment.