From 31e28f04d0ee0efe8cb4bb02b9a5ff5d3153a3ad Mon Sep 17 00:00:00 2001 From: Vyncint Ng Date: Tue, 22 Sep 2026 14:59:30 +0700 Subject: [PATCH] ci: measure the semver gate against 2.3.0 The post-publish step, and the first one the new check caught rather than somebody remembering it: within a minute of the crates reaching the index, check-versions.sh said VERSION GATE: the semver baseline is 2.2.1, the newest published launchbound-cli is 2.3.0 which is exactly the drift that went unnoticed from 2.2.1 to now. Eight crates, no semver update required, forced to --release-type patch. Signed-off-by: Vyncint Ng --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f4e90de..3fd14ce 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -138,7 +138,7 @@ jobs: run: | echo "release-type: $RELEASE_TYPE" cargo semver-checks --workspace \ - --baseline-version 2.2.1 \ + --baseline-version 2.3.0 \ --release-type "$RELEASE_TYPE" # MSRV applies to the crates that do not need the pinned nightly