6 Commits
v0.2.1 ... v0

Author SHA1 Message Date
369f740c1b chore(changelog): update changelog for v0.2.3
All checks were successful
Create Major Version Tag / update-major-tag (release) Successful in 6s
2025-12-13 19:26:51 +00:00
c2999be2cd chore(version): bump version to 0.2.3
All checks were successful
Auto Changelog & Release / release (push) Successful in 9s
2025-12-13 20:26:39 +01:00
1c12062f12 Revert "chore(changelog): normalize version headings by replacing hyphens with tildes"
This reverts commit a2a77a49b1.
2025-12-13 20:26:24 +01:00
a38586f52c fix(changelog): normalize version hyphens to tildes in Debian changelog 2025-12-13 20:26:12 +01:00
1239d67412 chore(version): bump version to 0.2.2
All checks were successful
Auto Changelog & Release / release (push) Successful in 8s
Create Major Version Tag / update-major-tag (release) Successful in 7s
2025-12-13 20:11:36 +01:00
a2a77a49b1 chore(changelog): normalize version headings by replacing hyphens with tildes 2025-12-13 20:11:36 +01:00
3 changed files with 9 additions and 3 deletions

View File

@@ -2,6 +2,12 @@
All notable changes to this project will be documented in this file.
## [0.2.3](https://git.0xmax42.io/actions/deb-changelog-action/compare/v0.2.2..v0.2.3) - 2025-12-13
### 🐛 Bug Fixes
- *(changelog)* Normalize version hyphens to tildes in Debian changelog - ([a38586f](https://git.0xmax42.io/actions/deb-changelog-action/commit/a38586f52c48a830a8c8a5eda25a50eed40a782f))
## [0.2.1](https://git.0xmax42.io/actions/deb-changelog-action/compare/v0.2.0..v0.2.1) - 2025-12-13
### 🚜 Refactor

View File

@@ -1 +1 @@
0.2.1
0.2.3

View File

@@ -1,6 +1,6 @@
[changelog]
body = """\
{{ get_env(name="PACKAGE_NAME") }} ({% if version %}{{ version | trim_start_matches(pat="v") }}{% else %}0.0.0-1{% endif %}) unstable; urgency=medium\
{{ get_env(name="PACKAGE_NAME") }} ({% if version %}{{ version | replace(from="-", to="~") | trim_start_matches(pat="v") }}{% else %}0.0.0-1{% endif %}) unstable; urgency=medium\
{% for group, commits in commits | group_by(attribute="group") %}
* {{ group | striptags | trim | upper_first }}:\
{% for commit in commits %}
@@ -8,7 +8,7 @@ body = """\
{% endfor %}\
{% endfor %}
-- {{ get_env(name="AUTHOR_NAME") }} <{{ get_env(name="AUTHOR_EMAIL") }}> {% if version %}{{ now() | date(format="%a, %d %b %Y %H:%M:%S %z") }}{% else %}{{ now() | date(format="%a, %d %b %Y %H:%M:%S %z") }}{% endif %}
-- {{ get_env(name="AUTHOR_NAME") }} <{{ get_env(name="AUTHOR_EMAIL") }}> {% if version %}{{ now() | date(format="%a, %d %b %Y %H:%M:%S %z") }}{% else %}{{ now() | date(format="%a, %d %b %Y %H:%M:%S %z") }}{% endif %}
"""