5757## Any commit having its full commit message matching any regexp listed here
5858## will be ignored and won't be reported in the changelog.
5959##
60- #ignore_regexps = []
6160ignore_regexps = [
61+ r'^([cC]i)\s*:' ,
6262 r'@minor' , r'!minor' ,
6363 r'@cosmetic' , r'!cosmetic' ,
6464 r'@refactor' , r'!refactor' ,
@@ -135,8 +135,6 @@ section_regexps = [
135135#body_process = Wrap(regexp=r'\n(?=\w+\s*:)')
136136#body_process = noop
137137body_process = ReSub (r'((^|\n)[A-Z]\w+(-\w+)*: .*(\n\s+.*)*)+$' , r'' ) | strip
138- #body_process = lambda text: ""
139- #body_process = ReSub(r'.*', '')
140138
141139
142140## ``subject_process`` is a callable
@@ -154,17 +152,17 @@ subject_process = (strip |
154152##
155153## Tags that will be used for the changelog must match this regexp.
156154##
157- # tag_filter_regexp = r'^v?[0-9]+\.[0-9]+(\.[0-9]+)?$'
158- tag_filter_regexp = r"^.*$"
155+ tag_filter_regexp = r'^v?[0-9]+\.[0-9]+(\.[0-9]+)?$'
156+ # tag_filter_regexp = r"^.*$"
159157
160158## ``unreleased_version_label`` is a string or a callable that outputs a string
161159##
162160## This label will be used as the changelog Title of the last set of changes
163161## between last valid tag and HEAD if any.
164- # custom template (.tpl file below) overrides this setting
165162unreleased_version_label = lambda : swrap (
166163 ["git" , "describe" , "--tags" ],
167- shell = False )
164+ shell = False ,
165+ )
168166#unreleased_version_label = "(unreleased)"
169167
170168
@@ -198,7 +196,6 @@ shell=False)
198196##
199197output_engine = rest_py
200198#output_engine = mustache("restructuredtext")
201- #output_engine = mustache(".gitchangelog-keepachangelog.tpl")
202199#output_engine = mustache("markdown")
203200#output_engine = makotemplate("restructuredtext")
204201
@@ -254,8 +251,7 @@ include_merge = False
254251# r'/(?P<rev>[0-9]+\.[0-9]+(\.[0-9]+)?)\s+\([0-9]+-[0-9]{2}-[0-9]{2}\)\n--+\n/',
255252# idx=lambda m: m.start(1)
256253# )
257-
258- publish = stdout
254+ #publish = stdout
259255
260256
261257## ``revs`` is a list of callable or a list of string
0 commit comments