Skip to content

Commit 3a2f02c

Browse files
committed
Bump version to 2.7.0
1 parent c6294e5 commit 3a2f02c

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ 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.7.0]
8+
### Added
9+
- Added support for slevomat/coding-standard:8.0 ([#611](https://github.com/nunomaduro/phpinsights/pull/611))
10+
11+
### Changed
12+
- Fixed some wording and typos ([#606](https://github.com/nunomaduro/phpinsights/pull/606))
13+
- Docs: fixed typo ([#608](https://github.com/nunomaduro/phpinsights/pull/608))
14+
- Fixes typos in stub files. ([#607](https://github.com/nunomaduro/phpinsights/pull/607))
15+
- Grammar change ([#610](https://github.com/nunomaduro/phpinsights/pull/610))
16+
717
## [v2.6.1]
818
### Changed
919
- Changed the foreground color of the box labels in console output ([#600](https://github.com/nunomaduro/phpinsights/pull/600))

RELEASE.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
Upon releasing a new version there's some checks and updates to be made:
44

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

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

0 commit comments

Comments
 (0)