Skip to content

Commit 854c214

Browse files
committed
Bump version to 2.2.0
1 parent 48d8a48 commit 854c214

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ 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.2.0]
8+
### Fixed
9+
- Fix ComposerLoader ([#566](https://github.com/nunomaduro/phpinsights/pull/566))
10+
- Fix exclude ForbiddenGlobals sniff ([#562](https://github.com/nunomaduro/phpinsights/pull/562))
11+
12+
### Changed
13+
- Bump docker to php 8.0 ([#570](https://github.com/nunomaduro/phpinsights/pull/570))
14+
715
## [v2.1.0]
816
### Added
917
- Support for Laravel 9

RELEASE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Upon releasing a new version there's some checks and updates to be made:
77
- Update the version number in `docs/package.json` file
88
- Check the contents on https://github.com/nunomaduro/phpinsights/compare/{latest_version}...master and update the [changelog](CHANGELOG.md) file with the modifications on this release
99
> Note: make sure that there is no breaking changes and you may use `git tag --list` to check the latest release
10-
- Commit the `src/Domain/Kernel`, `docs/package.json` and `CHANGELOG.md` with the message: `git commit -m "Bumps version to {new_version}"`
10+
- Commit the `src/Domain/Kernel`, `docs/package.json` and `CHANGELOG.md` with the message: `git commit -m "Bump version to {new_version}"`
1111
- `git push`
1212
- `git tag {new_version}`
1313
- `git push --tags`

docs/package.json

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

src/Domain/Kernel.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ final class Kernel
2020
*
2121
* @noRector Rector\DeadCode\Rector\ClassConst\RemoveUnusedClassConstantRector
2222
*/
23-
public const VERSION = 'v2.0.1';
23+
public const VERSION = 'v2.2.0';
2424

2525
/**
2626
* Bootstraps the usage of the package.

0 commit comments

Comments
 (0)