Skip to content

Commit d901533

Browse files
committed
chore(release): 1.16.0
1 parent 4545130 commit d901533

File tree

4 files changed

+18
-4
lines changed

4 files changed

+18
-4
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@
44
All notable changes to this project will be documented in this file.
55
<!--- END HEADER -->
66

7+
## [1.16.0](https://github.com/marcocesarato/php-conventional-changelog/compare/v1.15.6...v1.16.0) (2022-11-26)
8+
9+
### Features
10+
11+
* New option: Do not update CHANGELOG if no commits found. ([00a81e](https://github.com/marcocesarato/php-conventional-changelog/commit/00a81ee59f3f3e3f3b386f454d480a77538892ab))
12+
13+
### Bug Fixes
14+
15+
* Can parse header with carriage return and newline. ([ac4710](https://github.com/marcocesarato/php-conventional-changelog/commit/ac47108d2d1aed3e1e9fd8e7c5ea644a1216f8df))
16+
* Retrieve last tag with extra [#48](https://github.com/marcocesarato/php-conventional-changelog/issues/48) ([454513](https://github.com/marcocesarato/php-conventional-changelog/commit/45451305801803aedc40cf01397440eea4524c0d))
17+
18+
19+
---
20+
721
## [1.15.6](https://github.com/marcocesarato/php-conventional-changelog/compare/v1.15.5...v1.15.6) (2022-11-17)
822

923
### Bug Fixes

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<h1 align="center">PHP Conventional Changelog</h1>
44

5-
![Version](https://img.shields.io/badge/version-1.15.6-brightgreen?style=for-the-badge)
5+
![Version](https://img.shields.io/badge/version-1.16.0-brightgreen?style=for-the-badge)
66
![Requirements](https://img.shields.io/badge/php-%3E%3D%207.1.3-4F5D95?style=for-the-badge)
77
[![Conventional Commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow?style=for-the-badge)](https://conventionalcommits.org)
88
![License](https://img.shields.io/github/license/marcocesarato/php-conventional-changelog?style=for-the-badge)

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "marcocesarato/php-conventional-changelog",
33
"description": "Generate changelogs and release notes from a project's commit messages and metadata and automate versioning with semver.org and conventionalcommits.org",
4-
"version": "1.15.6",
4+
"version": "1.16.0",
55
"type": "library",
66
"license": "GPL-3.0-or-later",
77
"minimum-stability": "stable",
@@ -74,4 +74,4 @@
7474
"post-merge": "composer install"
7575
}
7676
}
77-
}
77+
}

conventional-changelog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ $command = new DefaultCommand($config);
2727
$commandName = $command->getName();
2828

2929
// Run application single command
30-
$application = new Application('conventional-changelog', '1.15.6');
30+
$application = new Application('conventional-changelog', '1.16.0');
3131
$application->add($command);
3232
$application->setDefaultCommand($commandName, true);
3333
$application->run();

0 commit comments

Comments
 (0)