From 79b0f953d5c19f5c335b26390139142e81044907 Mon Sep 17 00:00:00 2001 From: Marco Cesarato Date: Tue, 19 Jan 2021 23:09:59 +0100 Subject: [PATCH] chore(release): 1.4.3 --- CHANGELOG.md | 22 ++++++++++++++++++++++ README.md | 2 +- conventional-changelog | 2 +- 3 files changed, 24 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e820783..37405bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,28 @@ All notable changes to this project will be documented in this file. +## [1.4.3](https://github.com/marcocesarato/php-conventional-changelog/compare/v1.4.2...v1.4.3) (2021-01-19) + + +### Features + +* Implement new commit parser and refactoring of helper classes ([F2f2ec](https://github.com/marcocesarato/php-conventional-changelog/commit/F2f2ec80adfa787d453817faa64906e9dd988e44)) +* Add new conventional commit parser ([603f72](https://github.com/marcocesarato/php-conventional-changelog/commit/603f724dc759f4762c9b09489cb7620a98a10d67)) +* Add breaking changes and issues references ([Bda545](https://github.com/marcocesarato/php-conventional-changelog/commit/Bda5458e6c190a861417fb0239f86057c1d0c22f)) + +### Bug Fixes + +* Semantic version extra part split ([183116](https://github.com/marcocesarato/php-conventional-changelog/commit/18311683929859060af3c449a76fad41cb2baa52)) +* Commit changes list generation ([68b1ff](https://github.com/marcocesarato/php-conventional-changelog/commit/68b1ff9f424b47d0965702724e3cce5866b88892)) +* Uppercase first char of scope on stringify ([4eaebe](https://github.com/marcocesarato/php-conventional-changelog/commit/4eaebe96c84fa74aefa39d60fa1aeb3777316ce9)) +* Move scope to string method to pretty string ([D64421](https://github.com/marcocesarato/php-conventional-changelog/commit/D644210b973b1b16e3feeb140c3da881667888fa)) + +### Chores + +* Change php requirements ([5997ec](https://github.com/marcocesarato/php-conventional-changelog/commit/5997ecf5f02bbeedd1e31fe98cc5f6d8d743cb14)) + +--- + ## [1.4.2](https://github.com/marcocesarato/php-conventional-changelog/compare/v1.4.1...v1.4.2) (2021-01-19) diff --git a/README.md b/README.md index 6f1daa3..7e19919 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # PHP Conventional Changelog -![Version](https://img.shields.io/badge/version-1.4.2-brightgreen?style=for-the-badge) +![Version](https://img.shields.io/badge/version-1.4.3-brightgreen?style=for-the-badge) ![Requirements](https://img.shields.io/badge/php-%3E%3D%207.1.3-4F5D95?style=for-the-badge) ![Code Style](https://img.shields.io/badge/code%20style-PSR-blue?style=for-the-badge) ![License](https://img.shields.io/github/license/marcocesarato/php-conventional-changelog?style=for-the-badge) diff --git a/conventional-changelog b/conventional-changelog index 8fc18de..dce2125 100644 --- a/conventional-changelog +++ b/conventional-changelog @@ -38,7 +38,7 @@ $command = new DefaultCommand($config); $commandName = $command->getName(); // Run application single command -$application = new Application('conventional-changelog', '1.4.2'); +$application = new Application('conventional-changelog', '1.4.3'); $application->add($command); $application->setDefaultCommand($commandName, true); $application->run();