Skip to content

Commit

Permalink
chore(release): 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
marcocesarato committed Jan 18, 2021
1 parent f0d5f7d commit 8970d4e
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 7 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Expand Up @@ -4,6 +4,23 @@
All notable changes to this project will be documented in this file.
<!--- END HEADER -->

## [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)


Expand Down
13 changes: 8 additions & 5 deletions 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)
Expand Down Expand Up @@ -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
```
Expand Down
1 change: 0 additions & 1 deletion 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)
Expand Down
2 changes: 1 addition & 1 deletion conventional-changelog
Expand Up @@ -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();

0 comments on commit 8970d4e

Please sign in to comment.