From 520cd90c43049559965e75139bc3950c21ce1f86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Wed, 28 Feb 2024 10:41:45 +0100 Subject: [PATCH] release: Remove the "test-" from the release version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is not needed anymore as we can run the tests from any branch, and we can patch this locally before doing a test. Signed-off-by: Fabiano FidĂȘncio --- tools/packaging/release/release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/packaging/release/release.sh b/tools/packaging/release/release.sh index b388027d89..019df075f0 100755 --- a/tools/packaging/release/release.sh +++ b/tools/packaging/release/release.sh @@ -83,7 +83,7 @@ function _next_release_version() esac next_release_number="${next_major}.${next_minor}.0" - echo "test-${next_release_number}" + echo "${next_release_number}" } function _update_version_file()