From 46b8a52b5a9b5b8872e2478b07fcc9e0f014b6b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20CORTIER?= Date: Tue, 12 May 2026 10:50:46 +0900 Subject: [PATCH] chore(release-plz): change default git_tag_name By default, it's: - "{{ package }}-v{{ version }}" for workspaces containing more than one public package. - "v{{ version }}" for projects containing a single crate or workspaces containing just one public package. But we want the package name in the tag even if we only publish a single crate. --- rust/release-plz.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/rust/release-plz.toml b/rust/release-plz.toml index a60f4b5..59b7a9b 100644 --- a/rust/release-plz.toml +++ b/rust/release-plz.toml @@ -1,6 +1,7 @@ [workspace] dependencies_update = true git_release_enable = false +git_tag_name = "{{ package }}-v{{ version }}" semver_check = true pr_branch_prefix = "release-plz/" pr_name = "chore(release): prepare for publishing"