Skip to content

Commit d4b6950

Browse files
committed
chg: bump version files, update changelog/cfg, cleanup release bits
Signed-off-by: Stephen L Arnold <sarnold@vctlabs.com>
1 parent 7772ac9 commit d4b6950

File tree

7 files changed

+149
-285
lines changed

7 files changed

+149
-285
lines changed

.gitchangelog.rc

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@
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 = []
6160
ignore_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
137137
body_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
165162
unreleased_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
##
199197
output_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

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ jobs:
139139
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
140140
with:
141141
tag_name: ${{ env.VERSION }}
142-
name: Release v${{ env.VERSION }}
142+
name: Release ${{ env.VERSION }}
143143
body_path: CHANGES.md
144144
draft: false
145145
prerelease: false

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.18)
44
list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
55

66
# used for both library and pkgconfig file
7-
set(PACKAGE_VERSION 0.2.1)
7+
set(PACKAGE_VERSION 0.2.2)
88
set(LIBRARY_SOVERSION 0)
99

1010
if(SCM_VERSION_INFO)

0 commit comments

Comments
 (0)