From c01e768e70d16638134d364198564e5cd3eb0578 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20Scha=CC=88fer?= <101886095+PeterSchafer@users.noreply.github.com> Date: Mon, 10 Feb 2025 14:51:04 +0100 Subject: [PATCH] fix: Fix incorrect version bump by temporary hard coding patch --- binary-releases/RELEASE_NOTES.md | 2 +- release-scripts/next-version.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/binary-releases/RELEASE_NOTES.md b/binary-releases/RELEASE_NOTES.md index 280e2cb46f..3f26c74042 100644 --- a/binary-releases/RELEASE_NOTES.md +++ b/binary-releases/RELEASE_NOTES.md @@ -1,4 +1,4 @@ -## [1.1295.3](https://github.com/snyk/snyk/compare/v1.1295.2...v1.1295.3) (2025-02-10) +## [1.1295.3](https://github.com/snyk/snyk/compare/v1.1295.2...v1.1295.3) (2025-02-11) The Snyk CLI is being deployed to different deployment channels, users can select the stability level according to their needs. For details please see [this documentation](https://docs.snyk.io/snyk-cli/releases-and-channels-for-the-snyk-cli) diff --git a/release-scripts/next-version.sh b/release-scripts/next-version.sh index b23b8fdc59..05e3bbbea7 100755 --- a/release-scripts/next-version.sh +++ b/release-scripts/next-version.sh @@ -3,7 +3,7 @@ set -euo pipefail # Checks the latest version of Snyk CLI on npm and decides the next version. # Only output the next version to stdout. All other output should go to stderr. -NEXT_VERSION="$(convco version --bump)" +NEXT_VERSION="$(convco version --bump --patch)" CURRENT_TAG="$(git describe --tags `git rev-list --tags --max-count=1`)" RELEASE_CHANNEL="$($(dirname "$0")/determine-release-channel.sh)"