Skip to content

Commit

Permalink
Bump version to 2.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cmgmyr committed Oct 20, 2023
1 parent 244e89a commit 52d69d8
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,22 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [v2.9.0]
### Added
* Add option to set timeout [#595](https://github.com/nunomaduro/phpinsights/pull/595)

### Fixed
* fix readonly final class architecture side effect issue PHP8.2 [#645](https://github.com/nunomaduro/phpinsights/pull/645)
* add quotes around binary path [#655](https://github.com/nunomaduro/phpinsights/pull/655)
* Fix error: The option "preset" with value "wordpress" is invalid [#646](https://github.com/nunomaduro/phpinsights/pull/646)
* Fix non-existing default property [#652](https://github.com/nunomaduro/phpinsights/pull/652)
* PHP 8.2 fix for dynamic property $exclude [#653](https://github.com/nunomaduro/phpinsights/pull/653)
* Prevent the runner to swallow its threads error [#641](https://github.com/nunomaduro/phpinsights/pull/641)

### Changed
* Update GitHub actions [#633](https://github.com/nunomaduro/phpinsights/pull/633)
* Test against php 8.3 [#660](https://github.com/nunomaduro/phpinsights/pull/660)

## [v2.8.0]
### Added
* Added Laravel 10 and PHP 8.1 Support [#626](https://github.com/nunomaduro/phpinsights/pull/626)
Expand Down
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "phpinsights",
"version": "2.8.0",
"version": "2.9.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/Domain/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ final class Kernel
*
* @noRector Rector\DeadCode\Rector\ClassConst\RemoveUnusedClassConstantRector
*/
public const VERSION = 'v2.8.0';
public const VERSION = 'v2.9.0';

/**
* Bootstraps the usage of the package.
Expand Down

0 comments on commit 52d69d8

Please sign in to comment.