Skip to content

Commit

Permalink
Bump version to 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cmgmyr committed Mar 21, 2022
1 parent 48d8a48 commit 854c214
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ 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.2.0]
### Fixed
- Fix ComposerLoader ([#566](https://github.com/nunomaduro/phpinsights/pull/566))
- Fix exclude ForbiddenGlobals sniff ([#562](https://github.com/nunomaduro/phpinsights/pull/562))

### Changed
- Bump docker to php 8.0 ([#570](https://github.com/nunomaduro/phpinsights/pull/570))

## [v2.1.0]
### Added
- Support for Laravel 9
Expand Down
2 changes: 1 addition & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Upon releasing a new version there's some checks and updates to be made:
- Update the version number in `docs/package.json` file
- 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
> Note: make sure that there is no breaking changes and you may use `git tag --list` to check the latest release
- Commit the `src/Domain/Kernel`, `docs/package.json` and `CHANGELOG.md` with the message: `git commit -m "Bumps version to {new_version}"`
- Commit the `src/Domain/Kernel`, `docs/package.json` and `CHANGELOG.md` with the message: `git commit -m "Bump version to {new_version}"`
- `git push`
- `git tag {new_version}`
- `git push --tags`
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.0.1",
"version": "2.2.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 @@ -20,7 +20,7 @@ final class Kernel
*
* @noRector Rector\DeadCode\Rector\ClassConst\RemoveUnusedClassConstantRector
*/
public const VERSION = 'v2.0.1';
public const VERSION = 'v2.2.0';

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

0 comments on commit 854c214

Please sign in to comment.