Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlovetox <philipp@hoerist.com>2022-06-18 10:36:34 +0300
committerlovetox <philipp@hoerist.com>2022-06-18 10:36:34 +0300
commit6feecebc6cc08df66e72f846f8015f7768367412 (patch)
tree9a87931c054b49a052b6b886680616c2ab0baed1
parent7ad2d2856d3fc6e7efbbb2c31813957e913038ec (diff)
chore: Add new changelog tag
-rwxr-xr-x.chglog/config.yml5
-rwxr-xr-x.githooks/update1
-rw-r--r--CONTRIBUTING.md3
3 files changed, 7 insertions, 2 deletions
diff --git a/.chglog/config.yml b/.chglog/config.yml
index 20acb01fe..c178d27e8 100755
--- a/.chglog/config.yml
+++ b/.chglog/config.yml
@@ -8,19 +8,22 @@ options:
filters:
Type:
- feat
+ - imprv
+ - change
- perf
- fix
- - imprv
commit_groups:
sort_by: Custom
title_order:
- feat
- imprv
+ - change
- perf
- fix
title_maps:
feat: New
imprv: Improvements
+ change: Change
perf: Performance
fix: Bug Fixes
header:
diff --git a/.githooks/update b/.githooks/update
index fe5bc3a04..7a6dd3234 100755
--- a/.githooks/update
+++ b/.githooks/update
@@ -16,6 +16,7 @@ ALLOWED_TAGS = [
'perf',
'refactor',
'chore',
+ 'change',
'release',
'other',
'imprv',
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 3bb915787..7f3bd7844 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -35,12 +35,13 @@ A good article regarding [good commit messages](https://chris.beams.io/posts/git
Every commit message must be prefixed with one of the following tags:
- ci (ci related changes)
-- feat (functionality of the application was changed)
+- feat (a new feature was added)
- fix (something was fixed)
- perf (performance related changes)
- imprv (improvements)
- refactor (code was changed, but the end user will not notice)
- chore (reoccuring tasks which need to be done)
+- change (existing functionality was changed)
- release (only used for release commits)
- other