更新版本至6.0.0-RC1

This commit is contained in:
liuheng 2024-03-19 14:27:43 +08:00
parent 01fee11b9b
commit f473ecc4e1
3 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@
declare binarylib_dir='None'
declare gcc_version='10.3'
declare module_name="openGauss"
declare version_number='6.0.0'
declare version_number='6.0.0-RC1'
declare version_Kernel='92.298'
ROOT_DIR=$(cd $(dirname "${BASH_SOURCE[0]}") && pwd)
echo "ROOT_DIR : $ROOT_DIR"

View File

@ -20,7 +20,7 @@
class CommConstants:
""" constants for open gauss."""
PACKAGE_TYPE = "bz2File"
VERSION_PATTERN = r'[0-9]+\.[0-9]+\.[0-9]+'
VERSION_PATTERN = r'(\d+\.\d+\.\d+)(-RC\d+)?'
VERSION_EXAMPLE = "openGauss-1.0"
# upgrade sql sha file and sql file

View File

@ -8,7 +8,7 @@ then
fi
readonly cur_path=$(cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd && cd - &>/dev/null)
readonly version="6.0.0"
readonly version="6.0.0-RC1"
source $cur_path"/common.sh"