diff options
author | Simon Sawicki <contact@grub4k.xyz> | 2023-12-30 22:27:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-30 22:27:36 +0100 |
commit | f9fb3ce86e3c6a0c3c33b45392b8d7288bceba76 (patch) | |
tree | 4238cec16764841f1c61b4d8860b87615dfedd6b /devscripts/make_changelog.py | |
parent | 5f009a094f0e8450792b097c4c8273622778052d (diff) |
[cleanup] Misc (#8598)
Authored by: bashonly, pukkandan, seproDev, Grub4K
Co-authored-by: bashonly <bashonly@protonmail.com>
Co-authored-by: pukkandan <pukkandan.ytdlp@gmail.com>
Co-authored-by: sepro <4618135+seproDev@users.noreply.github.com>
Diffstat (limited to 'devscripts/make_changelog.py')
-rw-r--r-- | devscripts/make_changelog.py | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/devscripts/make_changelog.py b/devscripts/make_changelog.py index d0e893e58..123eebc2a 100644 --- a/devscripts/make_changelog.py +++ b/devscripts/make_changelog.py @@ -40,20 +40,6 @@ class CommitGroup(enum.Enum): return { name: group for group, names in { - cls.CORE: { - 'aes', - 'cache', - 'compat_utils', - 'compat', - 'cookies', - 'dependencies', - 'formats', - 'jsinterp', - 'outtmpl', - 'plugins', - 'update', - 'utils', - }, cls.MISC: { 'build', 'ci', @@ -404,9 +390,9 @@ class CommitRange: if not group: if self.EXTRACTOR_INDICATOR_RE.search(commit.short): group = CommitGroup.EXTRACTOR + logger.error(f'Assuming [ie] group for {commit.short!r}') else: - group = CommitGroup.POSTPROCESSOR - logger.warning(f'Failed to map {commit.short!r}, selected {group.name.lower()}') + group = CommitGroup.CORE commit_info = CommitInfo( details, sub_details, message.strip(), |