From 11a2b74aee613c9303c70fede550cca2327ebfc0 Mon Sep 17 00:00:00 2001 From: June Date: Thu, 6 Jun 2024 21:04:48 +0200 Subject: [PATCH] docs: redefine commit message "update" tag to be for tagging non-feat. Redefine the commit message "update" tag to be for tagging an enhancement or update, which doesn't qualify as a feature, and also have it not be restricted from tagging a breaking change. --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 0b3ba2c..54b06ef 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -13,7 +13,7 @@ Longer description here if necessary The `tag` should be one of the following: - `fix` - for a bug fix -- `update` - for a backwards compatible enhancement +- `update` - for an enhancement or update not qualifying as a feature - `feature` - for a new feature - `perf` - for a code change that improves performance - `refactor` - for a code change that isn't one of `fix`, `update`, `feature` or `perf`