From: Eduardo San Martin Morote Date: Thu, 3 Jun 2021 10:54:26 +0000 (+0200) Subject: build: move to beta X-Git-Tag: v2.0.0-beta.1~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5fbd0f0a1cf4a86b84906a32e28ac324ccd7643a;p=thirdparty%2Fvuejs%2Fpinia.git build: move to beta --- diff --git a/scripts/release.sh b/scripts/release.sh index 76cfb8ed..69dc0d16 100644 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -1,9 +1,9 @@ set -e echo "Current version:" $(grep version package.json | sed -E 's/^.*"(4[^"]+)".*$/\1/') -echo "Enter alpha version e.g., 2 will generate 2.0.0-alpha.2: " -read ALPHA +echo "Enter beta version e.g., 2 will generate 2.0.0-beta.2: " +read BETA -VERSION="2.0.0-alpha.$ALPHA" +VERSION="2.0.0-beta.$BETA" read -p "Releasing v$VERSION - are you sure? (y/n)" -n 1 -r echo # (optional) move to a new line