From 46e2c0302a2cba0dd179129a1a32e1b97fb9c854 Mon Sep 17 00:00:00 2001 From: Marco Cesarato Date: Sun, 17 Jan 2021 23:00:42 +0100 Subject: [PATCH] chore(release): 1.3.0 --- CHANGELOG.md | 21 +++++++++++++++++++++ README.md | 9 ++++++++- conventional-changelog | 2 +- 3 files changed, 30 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c308da..2ff54f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,27 @@ All notable changes to this project will be documented in this file. +## [1.3.0](https://github.com/marcocesarato/php-conventional-changelog/compare/v1.2.0...v1.3.0) (2021-01-17) + + +### Features + +* Add config file inclusion from working dir ([2cbb9f](https://github.com/marcocesarato/php-conventional-changelog/commit/2cbb9ff0bae2d25d4801845fec46d01d529fafe9)) +* Implement configuration system ([28001b](https://github.com/marcocesarato/php-conventional-changelog/commit/28001b4fa9de6da256641a5cf377a72f281bbc2a)) + +### Refactoring + +* Split changelog command class into default command and changelog class ([cd3e0e](https://github.com/marcocesarato/php-conventional-changelog/commit/cd3e0e8562e2a3ec014461a005ac646bea71765a)) + +### Docs + + +##### Readme + +* Add configuration section with an example ([bc6aa3](https://github.com/marcocesarato/php-conventional-changelog/commit/bc6aa3ea23d0cef82c150620d33fb6d50f4125c0)) + +--- + ## [1.2.0](https://github.com/marcocesarato/php-conventional-changelog/compare/v1.1.0...v1.2.0) (2021-01-17) diff --git a/README.md b/README.md index be9a040..2b9c485 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,20 @@ # PHP Conventional Changelog -![Version](https://img.shields.io/badge/version-1.2.0-brightgreen?style=for-the-badge) +![Version](https://img.shields.io/badge/version-1.3.0-brightgreen?style=for-the-badge) ![Requirements](https://img.shields.io/badge/php-%3E%3D%207.2.5-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) [![GitHub](https://img.shields.io/badge/GitHub-Repo-6f42c1?style=for-the-badge)](https://github.com/marcocesarato/php-conventional-changelog) +## Description + Generate changelogs and release notes from a project's commit messages and metadata using php composer and automate versioning with semver.org and conventionalcommits.org +### How to contribute + +Have an idea? Found a bug? Please raise to [ISSUES](https://github.com/marcocesarato/php-conventional-changelog/issues) or [PULL REQUEST](https://github.com/marcocesarato/php-conventional-changelog/pulls). +Contributions are welcome and are greatly appreciated! Every little bit helps. + ## 📖 Installation You can install it easily with composer diff --git a/conventional-changelog b/conventional-changelog index e8d2b4f..37c94d1 100644 --- a/conventional-changelog +++ b/conventional-changelog @@ -31,7 +31,7 @@ $command = new DefaultCommand($config); $commandName = $command->getName(); // Run application single command -$application = new Application('conventional-changelog', '1.2.0'); +$application = new Application('conventional-changelog', '1.3.0'); $application->add($command); $application->setDefaultCommand($commandName, true); $application->run();