From 4ec4ba01643c81158e594b39b7dcc99f926f2416 Mon Sep 17 00:00:00 2001 From: Artur Shiriev Date: Mon, 8 Jun 2026 20:58:53 +0300 Subject: [PATCH] docs: bump GitHub Actions recipe semvertag floor to >=0.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The 0.2.x line predates the GitHub provider; >=0.2 in the GHA recipe silently misleads users into thinking 0.2.0 supports GitHub. Tighten the floor to >=0.3,<1 in the three GHA examples (README hero + docs/providers/github.md Quick Start + strategy example). GitLab CI's >=0.1,<1 floor stays as-is — 0.1.x is the correct floor for that provider. Co-Authored-By: Claude Opus 4.7 (1M context) --- README.md | 2 +- docs/providers/github.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index feaca25..5e8658d 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ jobs: with: python-version: "3.13" - run: pip install --quiet 'uv>=0.4,<1' - - run: uvx 'semvertag>=0.2,<1' tag + - run: uvx 'semvertag>=0.3,<1' tag env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} ``` diff --git a/docs/providers/github.md b/docs/providers/github.md index 32396a6..4808346 100644 --- a/docs/providers/github.md +++ b/docs/providers/github.md @@ -44,7 +44,7 @@ jobs: with: python-version: "3.13" - run: pip install --quiet --no-cache-dir 'uv>=0.4,<1' - - run: uvx 'semvertag>=0.2,<1' tag + - run: uvx 'semvertag>=0.3,<1' tag env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} ``` @@ -75,7 +75,7 @@ Pass `--strategy` (or set `SEMVERTAG_STRATEGY`) to one of: | `conventional-commits` | Bump from Conventional Commits headers since the last tag. | ```yaml - - run: uvx 'semvertag>=0.2,<1' tag --strategy conventional-commits + - run: uvx 'semvertag>=0.3,<1' tag --strategy conventional-commits ``` ## Required permissions