release: Remove the "test-" from the release version

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 <fabiano.fidencio@intel.com>
This commit is contained in:
Fabiano Fidêncio 2024-02-28 10:41:45 +01:00
parent 22b19d0637
commit 520cd90c43
No known key found for this signature in database
GPG Key ID: EE926C2BDACC177B

View File

@ -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()