Skip to content

Commit

Permalink
chore(release): 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
marcocesarato committed Jan 17, 2021
1 parent bc6aa3e commit 46e2c03
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 2 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,27 @@
All notable changes to this project will be documented in this file.
<!--- END HEADER -->

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


Expand Down
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion conventional-changelog
Original file line number Diff line number Diff line change
Expand Up @@ -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();

0 comments on commit 46e2c03

Please sign in to comment.