Skip to content

Commit

Permalink
prepare feature release 9.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
llaville committed Oct 8, 2024
1 parent 88342d9 commit 7697ce1
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 2 deletions.
13 changes: 13 additions & 0 deletions .changes/9.5.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@

## 9.5.0 - 2024-10-08

### Changed

- drop support to PHP 8.1
- [#213](https://github.com/overtrue/phplint/issues/213) : Get application version from Composer Runtime API

### Fixed

- [#192](https://github.com/overtrue/phplint/issues/192) : The "-x" option does not exist.

**Full Changelog**: [9.4.1...9.5.0](https://github.com/overtrue/phplint/compare/9.4.1...9.5.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.5.0 - 2024-10-08

### Changed

- drop support to PHP 8.1
- [#213](https://github.com/overtrue/phplint/issues/213) : Get application version from Composer Runtime API

### Fixed

- [#192](https://github.com/overtrue/phplint/issues/192) : The "-x" option does not exist.

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

## 9.4.1 - 2024-07-05

> [!NOTE]
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
| Version | Status | Requirements |
|:--------|:------------------------------------------|:---------------|
| **9.x** | **Active development** | **PHP >= 8.1** |
| 9.5 | Active support | PHP >= 8.2 |
| 9.4 | Active support | PHP >= 8.1 |
| 9.3 | Active support | PHP >= 8.1 |
| 9.2 | Active support | PHP >= 8.1 |
Expand Down
4 changes: 2 additions & 2 deletions docs/installation.md
Original file line number Diff line number Diff line change
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.4" copy="false" />
<phar name="overtrue/phplint" version="^9.5" copy="false" />
</phive>
```

Expand All @@ -61,7 +61,7 @@ phive install --force-accept-unsigned
You can install `phplint` with [Composer][composer]

```shell
composer global require overtrue/phplint
composer global require overtrue/phplint ^9.5
```

If you cannot install it because of a dependency conflict, or you prefer to install it for your project, we recommend
Expand Down

0 comments on commit 7697ce1

Please sign in to comment.