Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 369f740c1b | |||
|
c2999be2cd
|
|||
|
1c12062f12
|
|||
|
a38586f52c
|
|||
|
1239d67412
|
|||
|
a2a77a49b1
|
@@ -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
|
||||
|
||||
@@ -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 %}
|
||||
|
||||
"""
|
||||
|
||||
|
||||
Reference in New Issue
Block a user