diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a91710..2719760 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file. +## [1.17.0](https://github.com/marcocesarato/php-conventional-changelog/compare/v1.16.0...v1.17.0) (2023-03-26) + +### Bug Fixes + +* Cast `Scope` as string to use it as array key ([aff96f](https://github.com/marcocesarato/php-conventional-changelog/commit/aff96f70c05dec4191190eaf32951930f2b2570c)) +* Check string offset exists before using it ([1fe715](https://github.com/marcocesarato/php-conventional-changelog/commit/1fe7152382ea5719a6a39067e4d8ce6e154f31f2)) + + +--- + ## [1.16.0](https://github.com/marcocesarato/php-conventional-changelog/compare/v1.15.6...v1.16.0) (2022-11-26) ### Features diff --git a/README.md b/README.md index 578f0fe..8dadaf1 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@

PHP Conventional Changelog

-![Version](https://img.shields.io/badge/version-1.16.0-brightgreen?style=for-the-badge) +![Version](https://img.shields.io/badge/version-1.17.0-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 14f4f39..2afc86b 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.16.0", + "version": "1.17.0", "type": "library", "license": "GPL-3.0-or-later", "minimum-stability": "stable", diff --git a/conventional-changelog b/conventional-changelog index 6e880b6..22e9d95 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.16.0'); +$application = new Application('conventional-changelog', '1.17.0'); $application->add($command); $application->setDefaultCommand($commandName, true); $application->run();