Skip to content

Commit 52d69d8

Browse files
committed
Bump version to 2.9.0
1 parent 244e89a commit 52d69d8

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,22 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## [v2.9.0]
8+
### Added
9+
* Add option to set timeout [#595](https://github.com/nunomaduro/phpinsights/pull/595)
10+
11+
### Fixed
12+
* fix readonly final class architecture side effect issue PHP8.2 [#645](https://github.com/nunomaduro/phpinsights/pull/645)
13+
* add quotes around binary path [#655](https://github.com/nunomaduro/phpinsights/pull/655)
14+
* Fix error: The option "preset" with value "wordpress" is invalid [#646](https://github.com/nunomaduro/phpinsights/pull/646)
15+
* Fix non-existing default property [#652](https://github.com/nunomaduro/phpinsights/pull/652)
16+
* PHP 8.2 fix for dynamic property $exclude [#653](https://github.com/nunomaduro/phpinsights/pull/653)
17+
* Prevent the runner to swallow its threads error [#641](https://github.com/nunomaduro/phpinsights/pull/641)
18+
19+
### Changed
20+
* Update GitHub actions [#633](https://github.com/nunomaduro/phpinsights/pull/633)
21+
* Test against php 8.3 [#660](https://github.com/nunomaduro/phpinsights/pull/660)
22+
723
## [v2.8.0]
824
### Added
925
* Added Laravel 10 and PHP 8.1 Support [#626](https://github.com/nunomaduro/phpinsights/pull/626)

docs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "phpinsights",
3-
"version": "2.8.0",
3+
"version": "2.9.0",
44
"main": "index.js",
55
"license": "MIT",
66
"dependencies": {

src/Domain/Kernel.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ final class Kernel
1616
*
1717
* @noRector Rector\DeadCode\Rector\ClassConst\RemoveUnusedClassConstantRector
1818
*/
19-
public const VERSION = 'v2.8.0';
19+
public const VERSION = 'v2.9.0';
2020

2121
/**
2222
* Bootstraps the usage of the package.

0 commit comments

Comments
 (0)