Skip to content

Commit

Permalink
chore(release): 1.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco Cesarato committed Apr 15, 2021
1 parent 71722bd commit 843b4bf
Show file tree
Hide file tree
Showing 4 changed files with 97 additions and 70 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,33 @@
All notable changes to this project will be documented in this file.
<!--- END HEADER -->

## [1.10.0](https://github.com/marcocesarato/php-conventional-changelog/compare/v1.9.10...v1.10.0) (2021-04-15)


### Features

* Add packages bumper [#11](https://github.com/marcocesarato/php-conventional-changelog/issues/11) ([0849aa](https://github.com/marcocesarato/php-conventional-changelog/commit/0849aad6d04e6640777a819391736edde56f00ba))

##### Composer Json

* Add composer update on save [#11](https://github.com/marcocesarato/php-conventional-changelog/issues/11) ([ea8fb7](https://github.com/marcocesarato/php-conventional-changelog/commit/ea8fb7eded13e6924388f044044a9898ec810163))

##### Config

* Add bump package setting [#11](https://github.com/marcocesarato/php-conventional-changelog/issues/11) ([343dd6](https://github.com/marcocesarato/php-conventional-changelog/commit/343dd6e47259c0190aa41cad5a42597df64a0d0d))
* Add package lock commit setting [#11](https://github.com/marcocesarato/php-conventional-changelog/issues/11) ([2fc824](https://github.com/marcocesarato/php-conventional-changelog/commit/2fc8247fa77792ac1a6f6805196f3f42605321ea))

### Bug Fixes

* Add git command exists check ([9ecd9e](https://github.com/marcocesarato/php-conventional-changelog/commit/9ecd9ebb4979352f93e071a4b74686fe10c3b060))

##### Bump

* Add lock files to commit [#11](https://github.com/marcocesarato/php-conventional-changelog/issues/11) ([4da206](https://github.com/marcocesarato/php-conventional-changelog/commit/4da2061af0fb9e8da24215ed174896d5d8f4eb04))
* Unescape slashes on json encode [#11](https://github.com/marcocesarato/php-conventional-changelog/issues/11) ([29a83e](https://github.com/marcocesarato/php-conventional-changelog/commit/29a83e243c8fd29df984dfe33253f2836c8f9435))

---

## [1.9.10](https://github.com/marcocesarato/php-conventional-changelog/compare/v1.9.9...v1.9.10) (2021-04-13)


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<h1 align="center">PHP Conventional Changelog</h1>

![Version](https://img.shields.io/badge/version-1.9.10-brightgreen?style=for-the-badge)
![Version](https://img.shields.io/badge/version-1.10.0-brightgreen?style=for-the-badge)
![Requirements](https://img.shields.io/badge/php-%3E%3D%207.1.3-4F5D95?style=for-the-badge)
[![Conventional Commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow?style=for-the-badge)](https://conventionalcommits.org)
![License](https://img.shields.io/github/license/marcocesarato/php-conventional-changelog?style=for-the-badge)
Expand Down
136 changes: 68 additions & 68 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,68 +1,68 @@
{
"name": "marcocesarato/php-conventional-changelog",
"description": "Generate changelogs and release notes from a project's commit messages and metadata and automate versioning with semver.org and conventionalcommits.org",
"version": "1.9.10",
"type": "library",
"license": "GPL-3.0-or-later",
"minimum-stability": "stable",
"bin": [
"conventional-changelog"
],
"keywords": [
"conventional-changelog",
"readme",
"generation",
"git",
"php",
"conventional-commit",
"conventional-commits",
"conventionalcommits",
"changelog",
"history",
"tag",
"commit",
"commits",
"conventional",
"convention",
"conventional-changelog-preset"
],
"authors": [
{
"name": "Marco Cesarato",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"ConventionalChangelog\\": "src/"
}
},
"scripts": {
"changelog": "php conventional-changelog",
"check-cs": "php-cs-fixer fix --dry-run --format=txt --verbose --diff --diff-format=udiff --config=.php_cs",
"fix-cs": "php-cs-fixer fix --config=.php_cs --verbose",
"release": "php conventional-changelog --commit",
"release:patch": "php conventional-changelog --commit --patch",
"release:minor": "php conventional-changelog --commit --minor",
"release:major": "php conventional-changelog --commit --major",
"hooks": "cghooks",
"post-install-cmd": "cghooks add --ignore-lock",
"post-update-cmd": "cghooks update"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.18",
"brainmaestro/composer-git-hooks": "^2.8"
},
"require": {
"php": ">=7.1.3",
"ext-json": "*",
"symfony/console": "^4 || ^5"
},
"extra": {
"hooks": {
"pre-commit": "composer fix-cs",
"pre-push": "composer check-cs",
"post-merge": "composer install"
}
}
}
{
"name": "marcocesarato/php-conventional-changelog",
"description": "Generate changelogs and release notes from a project's commit messages and metadata and automate versioning with semver.org and conventionalcommits.org",
"version": "1.10.0",
"type": "library",
"license": "GPL-3.0-or-later",
"minimum-stability": "stable",
"bin": [
"conventional-changelog"
],
"keywords": [
"conventional-changelog",
"readme",
"generation",
"git",
"php",
"conventional-commit",
"conventional-commits",
"conventionalcommits",
"changelog",
"history",
"tag",
"commit",
"commits",
"conventional",
"convention",
"conventional-changelog-preset"
],
"authors": [
{
"name": "Marco Cesarato",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"ConventionalChangelog\\": "src/"
}
},
"scripts": {
"changelog": "php conventional-changelog",
"check-cs": "php-cs-fixer fix --dry-run --format=txt --verbose --diff --diff-format=udiff --config=.php_cs",
"fix-cs": "php-cs-fixer fix --config=.php_cs --verbose",
"release": "php conventional-changelog --commit",
"release:patch": "php conventional-changelog --commit --patch",
"release:minor": "php conventional-changelog --commit --minor",
"release:major": "php conventional-changelog --commit --major",
"hooks": "cghooks",
"post-install-cmd": "cghooks add --ignore-lock",
"post-update-cmd": "cghooks update"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.18",
"brainmaestro/composer-git-hooks": "^2.8"
},
"require": {
"php": ">=7.1.3",
"ext-json": "*",
"symfony/console": "^4 || ^5"
},
"extra": {
"hooks": {
"pre-commit": "composer fix-cs",
"pre-push": "composer check-cs",
"post-merge": "composer install"
}
}
}
2 changes: 1 addition & 1 deletion conventional-changelog
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ $command = new DefaultCommand($config);
$commandName = $command->getName();

// Run application single command
$application = new Application('conventional-changelog', '1.9.10');
$application = new Application('conventional-changelog', '1.10.0');
$application->add($command);
$application->setDefaultCommand($commandName, true);
$application->run();

0 comments on commit 843b4bf

Please sign in to comment.