diff --git a/CHANGELOG.md b/CHANGELOG.md
index ffdaa56..b367713 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,33 @@
All notable changes to this project will be documented in this file.
+## [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)
diff --git a/README.md b/README.md
index 34eea78..1be19b0 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
PHP Conventional Changelog
-![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)
diff --git a/composer.json b/composer.json
index 1951baf..b44cdc7 100644
--- a/composer.json
+++ b/composer.json
@@ -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": "cesarato.developer@gmail.com"
- }
- ],
- "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": "cesarato.developer@gmail.com"
+ }
+ ],
+ "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"
+ }
+ }
+}
\ No newline at end of file
diff --git a/conventional-changelog b/conventional-changelog
index 53d553e..80b2c49 100644
--- a/conventional-changelog
+++ b/conventional-changelog
@@ -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();