Skip to content

Commit 613d650

Browse files
committed
ci: fix release notes
1 parent 31a423e commit 613d650

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

templates/changelog.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{% if commits | length %}
2-
# Changes since {{ since }}
2+
## Changes since {{ since }}
33

44
{% for commit in commits %}
55
{%- set s = commit.message | split(pat=":") -%}
66
{% if s | length > 1 -%}
7-
- {{ commit.short_sha }}: {{ s.0 }} -{{ s.1 }} [@{{ commit.author }}]
7+
- {{ commit.short_sha }}: {{ s.0 }} -{{ s.1 }}
88
{% else -%}
9-
- {{ commit.short_sha }}: {{ commit.message }} [@{{ commit.author }}]
9+
- {{ commit.short_sha }}: {{ commit.message }}
1010
{% endif -%}
1111
{%- endfor %}
1212

templates/release.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
1-
# Description
1+
## Description
22

3-
The latest Docker image is `{{ REPO }}:{{ TAG }}`.
3+
The SRTOOL Docker image has been tagged as:
4+
5+
- `{{ REPO }}:{{ RUSTC_VERSION }}`
6+
- `{{ REPO }}:{{ RUSTC_VERSION }}-{{ SRTOOL_VERSION }}`
7+
8+
You can find it on [Docker Hub](https://hub.docker.com/r/{{ REPO }}).
9+
10+
Prefer using `{{ REPO }}:{{ RUSTC_VERSION }}` unless you **really must** pin a specific version or use an ancient version for some reason. Specifying the version (`{{ SRTOOL_VERSION }}`) is not recommended.
411

512
{{ CHANGELOG }}

0 commit comments

Comments
 (0)