From 213c32e9b0d7eafd14ea7c90273b69df0901dc46 Mon Sep 17 00:00:00 2001 From: Marco Cesarato Date: Sun, 14 Feb 2021 16:28:56 +0100 Subject: [PATCH] chore(release): 1.9.2 --- CHANGELOG.md | 28 ++++++++++++++++++++++++++++ README.md | 2 +- conventional-changelog | 2 +- 3 files changed, 30 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c414832..4da5797 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,34 @@ All notable changes to this project will be documented in this file. +## [1.9.2](https://github.com/marcocesarato/php-conventional-changelog/compare/v1.9.1...v1.9.2) (2021-02-14) + + +### Features + + +##### Git + +* Add closed attribute to references ([acb104](https://github.com/marcocesarato/php-conventional-changelog/commit/acb10474b5cb4f4002755ca7e55ab785c2750149)) +* Add mention and reference class ([b22fa5](https://github.com/marcocesarato/php-conventional-changelog/commit/b22fa5c46b54ed7de6072445c90ad2a8a1b7408a)) +* Commit classes auto compose when raw is empty ([0f7f9d](https://github.com/marcocesarato/php-conventional-changelog/commit/0f7f9d7d139c8ee0ccf53effa580735a0a40d508)) + +### Bug Fixes + +* Using new reference class on changelog generation ([03e3a2](https://github.com/marcocesarato/php-conventional-changelog/commit/03e3a2bbaebd26db6fef3a7e699020c30d89511c)) + +##### Config + +* Add isset check on setting ignore types ([22ab18](https://github.com/marcocesarato/php-conventional-changelog/commit/22ab180da24dec738f2dc1875590704ad473add9)) +* Remove empty check of setting ignore types ([4b764d](https://github.com/marcocesarato/php-conventional-changelog/commit/4b764def749372df2270ccee7cbb4f9c8dc7ce01)) + +##### Git + +* Add check empty commit on parse ([a26d6a](https://github.com/marcocesarato/php-conventional-changelog/commit/a26d6aeeecdd23e76773b5549b06800c4a240e09)) +* Footer references detection ([6a40c1](https://github.com/marcocesarato/php-conventional-changelog/commit/6a40c1a0a3fa67f088450e1aef45e295371797eb)) + +--- + ## [1.9.1](https://github.com/marcocesarato/php-conventional-changelog/compare/v1.9.0...v1.9.1) (2021-02-13) diff --git a/README.md b/README.md index 85cc01d..de75cc8 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@

PHP Conventional Changelog

-![Version](https://img.shields.io/badge/version-1.9.1-brightgreen?style=for-the-badge) +![Version](https://img.shields.io/badge/version-1.9.2-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/conventional-changelog b/conventional-changelog index ecdcf9c..99c8e6e 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.1'); +$application = new Application('conventional-changelog', '1.9.2'); $application->add($command); $application->setDefaultCommand($commandName, true); $application->run();