Skip to content

Commit 46b17de

Browse files
committed
chore: trim package name from version in changelog
1 parent bea3075 commit 46b17de

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

cliff.toml

+10-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,16 @@ All notable changes to this project will be documented in this file.\n
1414
# template for the changelog body
1515
# https://keats.github.io/tera/docs/#introduction
1616
body = """
17-
{% if version %}\
18-
## [{{ version }}] - {{ timestamp | date(format="%Y-%m-%d") }}
17+
{% if version %}## [{{ version
18+
| trim_start_matches(pat="synd-")
19+
| trim_start_matches(pat="api-")
20+
| trim_start_matches(pat="auth-")
21+
| trim_start_matches(pat="feed-")
22+
| trim_start_matches(pat="o11y-")
23+
| trim_start_matches(pat="stdx-")
24+
| trim_start_matches(pat="o11y-")
25+
| trim_start_matches(pat="term-")
26+
}}] - {{ timestamp | date(format="%Y-%m-%d") }}
1927
{% else %}\
2028
## [unreleased] __release_date__
2129
{% endif %}\

0 commit comments

Comments
 (0)