From 8970d4e5f19105feb3126ff610a1a595e791b495 Mon Sep 17 00:00:00 2001 From: Marco Cesarato Date: Mon, 18 Jan 2021 23:13:04 +0100 Subject: [PATCH] chore(release): 1.4.1 --- CHANGELOG.md | 17 +++++++++++++++++ README.md | 13 ++++++++----- TODO.md | 1 - conventional-changelog | 2 +- 4 files changed, 26 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 69fb8cb..44f31fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,23 @@ All notable changes to this project will be documented in this file. +## [1.4.1](https://github.com/marcocesarato/php-conventional-changelog/compare/v1.4.0...v1.4.1) (2021-01-18) + + +### Features + +* Add semantic version parser ([7b5a9f](https://github.com/marcocesarato/php-conventional-changelog/commit/7b5a9fd99a4557bc7c167b99baa7ac3107d6f6c6)) +* Add rc, alpha and beta release method ([f955e1](https://github.com/marcocesarato/php-conventional-changelog/commit/f955e18309fa8c304bb3fce0faaf23eb3e35eebe)) + +### Documentation + + +##### Readme + +* Add new options on command list ([1ce4e3](https://github.com/marcocesarato/php-conventional-changelog/commit/1ce4e3b60c065e4ab7b4a0eaf272e427ecd58425)) + +--- + ## [1.4.0](https://github.com/marcocesarato/php-conventional-changelog/compare/v1.3.0...v1.4.0) (2021-01-18) diff --git a/README.md b/README.md index 74fbdea..a01fb22 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # PHP Conventional Changelog -![Version](https://img.shields.io/badge/version-1.3.0-brightgreen?style=for-the-badge) +![Version](https://img.shields.io/badge/version-1.4.1-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) @@ -138,15 +138,18 @@ By default, will be added one to the patch semver part *(Example, if the last ve ``` -c --commit bool Commit the new release once changelog is generated --p --patch bool Patch release (bug fixes) [default] --min --minor bool Minor release (add functionality) --maj --major bool Major release (important changes) +-a --amend bool Amend commit the new release once changelog is generated + --major bool Major release (important changes) + --minor bool Minor release (add functionality) + --patch bool Patch release (bug fixes) [default] + --rc bool Release Candidate + --beta bool Beta release + --alpha bool Alpha release --first-release bool Run at first release (if --ver isn't specified version code will be 1.0.0) --to-date str Get commits from last tag date (or specified on --from-date) to specified date [YYYY-MM-DD] --from-date str Get commits from specified date [YYYY-MM-DD] --ver str Define the next release version code (semver) --history bool Generate the entire history of changes of all releases - --amend bool Amend commit the new release once changelog is generated --no-verify bool Bypasses the pre-commit and commit-msg hooks --no-tag bool Disable release auto tagging when commit enabled ``` diff --git a/TODO.md b/TODO.md index aa4c100..ee1b49e 100644 --- a/TODO.md +++ b/TODO.md @@ -1,6 +1,5 @@ # TODO -- Pre release (`--pre-release`) - Add `⚠ BREAKING CHANGES` list on top of the version release changes - Add `Refs` and `Closes` on changes line - Automated bump version (if not specified version bump) diff --git a/conventional-changelog b/conventional-changelog index d868eac..c4ceb59 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.3.0'); +$application = new Application('conventional-changelog', '1.4.1'); $application->add($command); $application->setDefaultCommand($commandName, true); $application->run();