From 1aa86ea489de3770d70ee0c8a42a227b727c2d08 Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Tue, 14 Jan 2025 07:38:01 +0100 Subject: [PATCH] feat: update release configuration for tagging options Configure release settings to include 'v' in the tag and exclude component name from the tag. This ensures a cleaner versioning strategy and aligns with standard tagging practices. --- release-please-config.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/release-please-config.json b/release-please-config.json index 83ce878..20efff7 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -3,6 +3,8 @@ ".": { "changelog-path": "CHANGELOG.md", "release-type": "node", + "include-component-in-tag": false, + "include-v-in-tag": true, "bump-minor-pre-major": false, "bump-patch-for-minor-pre-major": false, "draft": false,