From 89d0710ce567ef0ad62eaeda04bd1ba49a2a0e57 Mon Sep 17 00:00:00 2001
From: Awiteb
Date: Wed, 21 May 2025 23:57:16 +0000
Subject: [PATCH] chore(justfile): Add a subject to the tag message
Signed-off-by: Awiteb
---
justfile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/justfile b/justfile
index 7135468..5937c51 100644
--- a/justfile
+++ b/justfile
@@ -64,7 +64,7 @@ changelog:
[script]
release version:
set -e
- TAG_MSG=$(git-cliff --strip all --unreleased --body '{{ tag_change_body }}')
+ TAG_MSG="Version {{ version }}\n\n$(git-cliff --strip all --unreleased --body '{{ tag_change_body }}')\n"
sed -i "s/^version\s*= \".*\"/version = \"{{ version }}\"/" ./Cargo.toml
taplo fmt --config ./.taplo.toml ./Cargo.toml
{{ JUST_EXECUTABLE }} ci