Skip to content

Commit

Permalink
Bump version to 2.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cmgmyr committed Jan 30, 2023
1 parent c6294e5 commit 3a2f02c
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ 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.7.0]
### Added
- Added support for slevomat/coding-standard:8.0 ([#611](https://github.com/nunomaduro/phpinsights/pull/611))

### Changed
- Fixed some wording and typos ([#606](https://github.com/nunomaduro/phpinsights/pull/606))
- Docs: fixed typo ([#608](https://github.com/nunomaduro/phpinsights/pull/608))
- Fixes typos in stub files. ([#607](https://github.com/nunomaduro/phpinsights/pull/607))
- Grammar change ([#610](https://github.com/nunomaduro/phpinsights/pull/610))

## [v2.6.1]
### Changed
- Changed the foreground color of the box labels in console output ([#600](https://github.com/nunomaduro/phpinsights/pull/600))
Expand Down
4 changes: 2 additions & 2 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
Upon releasing a new version there's some checks and updates to be made:

- Clear your local repository with: `git add . && git reset --hard && git checkout master`
- Update the version number in `src/Domain/Kernel` file
- Update the version number in `src/Domain/Kernel.php` file
- 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 "Bump version to {new_version}"`
- Commit the `src/Domain/Kernel.php`, `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.6.1",
"version": "2.7.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.6.1';
public const VERSION = 'v2.7.0';

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

0 comments on commit 3a2f02c

Please sign in to comment.