From c0e7f082bcd5de0440a708f12bbd4e5235081140 Mon Sep 17 00:00:00 2001 From: Kevin Leyow Date: Wed, 24 Feb 2021 11:57:11 -0500 Subject: [PATCH] chore: fix hidden commit types not being included in changelog (#265) --- src/.versionrc | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/.versionrc diff --git a/src/.versionrc b/src/.versionrc new file mode 100644 index 000000000..d60bc8b98 --- /dev/null +++ b/src/.versionrc @@ -0,0 +1,15 @@ +{ + "types": [ + {"type": "feat", "section": "Features"}, + {"type": "fix", "section": "Bug Fixes"}, + {"type": "docs", "section": "Documentation"}, + {"type": "style", "section": "Styling"}, + {"type": "refactor", "section": "Refactors"}, + {"type": "perf", "section": "Performance"}, + {"type": "test", "section": "Tests"}, + {"type": "build", "section": "Build System"}, + {"type": "ci", "section": "CI"}, + {"type": "chore", "section": "Chore"}, + {"type": "revert", "section": "Reverts"} + ] +}