From 2a153727bab28c85d54184975292a468fac269f7 Mon Sep 17 00:00:00 2001
From: Marco Cesarato <36447518+marcocesarato@users.noreply.github.com>
Date: Sun, 19 May 2024 14:35:25 +0000
Subject: [PATCH] chore(release): 1.17.2
---
CHANGELOG.md | 9 +++++++++
README.md | 2 +-
composer.json | 4 ++--
conventional-changelog | 2 +-
4 files changed, 13 insertions(+), 4 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 36b8f12..85936a5 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,15 @@
All notable changes to this project will be documented in this file.
+## [1.17.2](https://github.com/marcocesarato/php-conventional-changelog/compare/v1.17.1...v1.17.2) (2024-05-19)
+
+### Bug Fixes
+
+* Wrong commits with non-latin description grouping ([ead95f](https://github.com/marcocesarato/php-conventional-changelog/commit/ead95f2ec5df3a8e1dbdc087b58e676cd7466fc7))
+
+
+---
+
## [1.17.1](https://github.com/marcocesarato/php-conventional-changelog/compare/v1.17.0...v1.17.1) (2024-03-09)
### Bug Fixes
diff --git a/README.md b/README.md
index 2fcd170..88c5565 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
PHP Conventional Changelog
-![Version](https://img.shields.io/badge/version-1.17.1-brightgreen?style=for-the-badge)
+![Version](https://img.shields.io/badge/version-1.17.2-brightgreen?style=for-the-badge)
![Requirements](https://img.shields.io/badge/php-%3E%3D%207.1.3-4F5D95?style=for-the-badge)
[![Conventional Commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow?style=for-the-badge)](https://conventionalcommits.org)
![License](https://img.shields.io/github/license/marcocesarato/php-conventional-changelog?style=for-the-badge)
diff --git a/composer.json b/composer.json
index 17bcab6..09bd1ad 100644
--- a/composer.json
+++ b/composer.json
@@ -1,7 +1,7 @@
{
"name": "marcocesarato/php-conventional-changelog",
"description": "Generate changelogs and release notes from a project's commit messages and metadata and automate versioning with semver.org and conventionalcommits.org",
- "version": "1.17.1",
+ "version": "1.17.2",
"type": "library",
"license": "GPL-3.0-or-later",
"minimum-stability": "stable",
@@ -75,4 +75,4 @@
"post-merge": "composer install"
}
}
-}
+}
\ No newline at end of file
diff --git a/conventional-changelog b/conventional-changelog
index 07913ee..7a63998 100755
--- a/conventional-changelog
+++ b/conventional-changelog
@@ -27,7 +27,7 @@ $command = new DefaultCommand($config);
$commandName = $command->getName();
// Run application single command
-$application = new Application('conventional-changelog', '1.17.1');
+$application = new Application('conventional-changelog', '1.17.2');
$application->add($command);
$application->setDefaultCommand($commandName, true);
$application->run();