From c64855933c1b9861c481fce5e494b7c97263e658 Mon Sep 17 00:00:00 2001 From: Kirill Mokevnin Date: Wed, 12 Aug 2026 20:07:17 -0400 Subject: [PATCH] =?UTF-8?q?fix:=20=D0=B8=D1=81=D0=BA=D0=B0=D1=82=D1=8C=20?= =?UTF-8?q?=D1=80=D0=B5=D0=BB=D0=B8=D0=B7=D0=BD=D1=8B=D0=B5=20=D1=82=D0=B5?= =?UTF-8?q?=D0=B3=D0=B8=20=D0=B2=20=D1=82=D0=BE=D0=BC=20=D0=B2=D0=B8=D0=B4?= =?UTF-8?q?=D0=B5,=20=D0=B2=20=D0=BA=D0=B0=D0=BA=D0=BE=D0=BC=20=D0=BE?= =?UTF-8?q?=D0=BD=D0=B8=20=D0=B5=D1=81=D1=82=D1=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit В манифест-режиме release-please по умолчанию ищет тег вида -v1.2.3, а в репозитории теги обычные, v1.2.3. Не найдя своего тега, он считает, что релизов не было, и пересобирает версию по всей истории: в python-pairs это дало релизный PR на 0.1.3 из docs-коммита многолетней давности. Co-Authored-By: Claude Opus 5 (1M context) --- release-please-config.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/release-please-config.json b/release-please-config.json index 4a79858..4ec0471 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -3,7 +3,8 @@ "packages": { ".": { "release-type": "python", - "package-name": "hexlet-points" + "package-name": "hexlet-points", + "include-component-in-tag": false } } }