Skip to content

Commit

Permalink
prepare bugfix release 9.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
llaville committed Feb 23, 2023
1 parent 4cb2bd2 commit da8aa33
Show file tree
Hide file tree
Showing 11 changed files with 43 additions and 29 deletions.
21 changes: 21 additions & 0 deletions .changes/9.0.4.md
@@ -0,0 +1,21 @@

## 9.0.4 - 2023-02-23

### Added

- PHPUnit 10 support

### Changed

- ConsoleOutput is no more final to be able to customize it
- LinterOutput implement Countable interface
- Finder implement JsonSerializable interface

### Fixed

- [#182](https://github.com/overtrue/phplint/issues/182) : Docker usage may raise a permission denied
- [#183](https://github.com/overtrue/phplint/issues/183) : Error is unintuitive when there are no files to lint
- [#185](https://github.com/overtrue/phplint/issues/185) : Analyse multiple path at same time did not work with console command
- [#187](https://github.com/overtrue/phplint/issues/187) : Improve log options implementation

**Full Changelog**: [9.0.3...9.0.4](https://github.com/overtrue/phplint/compare/9.0.3...9.0.4)
3 changes: 0 additions & 3 deletions .changes/unreleased/Added-20230219-083856.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions .changes/unreleased/Changed-20230222-085355.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions .changes/unreleased/Changed-20230222-085614.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions .changes/unreleased/Changed-20230222-093931.yaml

This file was deleted.

4 changes: 0 additions & 4 deletions .changes/unreleased/Fixed-20230219-150315.yaml

This file was deleted.

4 changes: 0 additions & 4 deletions .changes/unreleased/Fixed-20230222-095158.yaml

This file was deleted.

4 changes: 0 additions & 4 deletions .changes/unreleased/Fixed-20230222-135209.yaml

This file was deleted.

4 changes: 0 additions & 4 deletions .changes/unreleased/Fixed-20230223-153848.yaml

This file was deleted.

21 changes: 21 additions & 0 deletions CHANGELOG.md
Expand Up @@ -7,6 +7,27 @@ 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.0.4 - 2023-02-23

### Added

- PHPUnit 10 support

### Changed

- ConsoleOutput is no more final to be able to customize it
- LinterOutput implement Countable interface
- Finder implement JsonSerializable interface

### Fixed

- [#182](https://github.com/overtrue/phplint/issues/182) : Docker usage may raise a permission denied
- [#183](https://github.com/overtrue/phplint/issues/183) : Error is unintuitive when there are no files to lint
- [#185](https://github.com/overtrue/phplint/issues/185) : Analyse multiple path at same time did not work with console command
- [#187](https://github.com/overtrue/phplint/issues/187) : Improve log options implementation

**Full Changelog**: [9.0.3...9.0.4](https://github.com/overtrue/phplint/compare/9.0.3...9.0.4)

## 9.0.3 - 2023-02-14

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion src/Console/Application.php
Expand Up @@ -33,7 +33,7 @@
final class Application extends BaseApplication
{
public const NAME = 'phplint';
public const VERSION = '9.0.3';
public const VERSION = '9.0.4';

public function __construct()
{
Expand Down

0 comments on commit da8aa33

Please sign in to comment.