From 03607fc4366bcda26bb498d4666fc16179e3f53e Mon Sep 17 00:00:00 2001 From: Marco Cesarato Date: Tue, 11 May 2021 18:16:25 +0200 Subject: [PATCH] chore(release): 1.10.3 --- CHANGELOG.md | 12 ++++++++++++ README.md | 2 +- composer.json | 2 +- conventional-changelog | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a348867..0bd4309 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file. +## [1.10.3](https://github.com/marcocesarato/php-conventional-changelog/compare/v1.10.2...v1.10.3) (2021-05-11) + + +### Bug Fixes + + +##### Composer Json + +* Disable composer update on bump [#13](https://github.com/marcocesarato/php-conventional-changelog/issues/13) ([669262](https://github.com/marcocesarato/php-conventional-changelog/commit/669262ba6ceba78f82d6bb557c47564a90710716)) + +--- + ## [1.10.2](https://github.com/marcocesarato/php-conventional-changelog/compare/v1.10.1...v1.10.2) (2021-04-16) diff --git a/README.md b/README.md index fa1b160..c86919d 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@

PHP Conventional Changelog

-![Version](https://img.shields.io/badge/version-1.10.2-brightgreen?style=for-the-badge) +![Version](https://img.shields.io/badge/version-1.10.3-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 53b8acc..369b09f 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "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.2", + "version": "1.10.3", "type": "library", "license": "GPL-3.0-or-later", "minimum-stability": "stable", diff --git a/conventional-changelog b/conventional-changelog index 67138e5..6291e44 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.10.2'); +$application = new Application('conventional-changelog', '1.10.3'); $application->add($command); $application->setDefaultCommand($commandName, true); $application->run();