Compare commits

...

2 Commits

Author SHA1 Message Date
0a5c2af9a9 chore(version): bump version to 0.1.1
All checks were successful
Auto Changelog & Release / release (push) Successful in 7s
2025-06-27 22:48:36 +02:00
fba5c57fd4 fix(configs): correct environment variable for author email
- Replaces incorrect `AUTHOR_MAIL` with `AUTHOR_EMAIL` in template
- Ensures proper environment variable usage for email retrieval
2025-06-27 22:48:36 +02:00
2 changed files with 2 additions and 2 deletions

View File

@@ -1 +1 @@
0.1.0
0.1.1

View File

@@ -8,7 +8,7 @@ body = """\
{% endfor %}\
{% endfor %}
-- {{ get_env(name="AUTHOR_NAME") }} <{{ get_env(name="AUTHOR_MAIL") }}> {% 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 %}
"""