diff --git a/build/script/opengauss.spec b/build/script/opengauss.spec index 37fb3e2db..d8599a961 100644 --- a/build/script/opengauss.spec +++ b/build/script/opengauss.spec @@ -1,2 +1,2 @@ PRODUCT=openGauss -VERSION=2.0.1 +VERSION=2.0.2 diff --git a/build/script/package_opengauss.sh b/build/script/package_opengauss.sh index ea2313032..cdbeac126 100755 --- a/build/script/package_opengauss.sh +++ b/build/script/package_opengauss.sh @@ -108,7 +108,7 @@ function print_help() } ####################################################################### -##version 2.0.1 +##version 2.0.2 ####################################################################### function read_srv_version() { diff --git a/src/bin/pg_config/pg_config.cpp b/src/bin/pg_config/pg_config.cpp index 769b12da6..58277d910 100644 --- a/src/bin/pg_config/pg_config.cpp +++ b/src/bin/pg_config/pg_config.cpp @@ -295,7 +295,7 @@ static void show_version(int alls) #ifdef ENABLE_MULTIPLE_NODES printf("PostgreSQL 9.2.4\n"); #else - printf("openGauss 2.0.1\n"); + printf("openGauss 2.0.2\n"); #endif } diff --git a/src/gausskernel/dbmind/tools/sqldiag/main.py b/src/gausskernel/dbmind/tools/sqldiag/main.py index 264931a03..46e5f5e54 100644 --- a/src/gausskernel/dbmind/tools/sqldiag/main.py +++ b/src/gausskernel/dbmind/tools/sqldiag/main.py @@ -21,7 +21,7 @@ from algorithm.diag import SQLDiag from utils import ResultSaver from preprocessing import LoadData, split_sql -__version__ = '2.0.1' +__version__ = '2.0.2' __description__ = 'SQLdiag integrated by openGauss.'