diff util/generate_changelog.py @ 637:7940861ff9bc

cm: Fix categorization of CHANGELOG entries for new commands.
author Ludovic Chabant <ludovic@chabant.com>
date Tue, 09 Feb 2016 21:52:17 -0800
parents 442cf576ae25
children
line wrap: on
line diff
--- a/util/generate_changelog.py	Tue Feb 09 21:50:05 2016 -0800
+++ b/util/generate_changelog.py	Tue Feb 09 21:52:17 2016 -0800
@@ -18,11 +18,12 @@
 category_commands = [
         'chef', 'bake', 'find', 'help', 'import', 'init', 'paths', 'plugin',
         'plugins', 'prepare', 'purge', 'root', 'routes', 'serve',
-        'showconfig', 'showrecord', 'sources', 'theme', 'themes']
+        'showconfig', 'showrecord', 'sources', 'theme', 'themes', 'admin',
+        'publish']
 category_core = [
         'internal', 'bug', 'templating', 'formatting', 'performance',
         'data', 'config', 'rendering', 'render', 'debug', 'reporting',
-        'linker', 'pagination', 'routing', 'caching']
+        'linker', 'pagination', 'routing', 'caching', 'cli']
 category_project = ['build', 'cm', 'docs', 'tests', 'setup']
 categories = [
         ('commands', category_commands),