88# Date : 2023. 02. 08
99# Change Date :
1010#
11+ # =============================================================================
12+ # Set version and replace it
13+ # =============================================================================
14+ VP_ORG_VER=2.2.12
15+ VP_NEW_VER=2.3.0
16+
17+ # update version info
18+ grep -REil" VP_ORG_VER=.+$" colab/build.colab.sh jupyterlab/build.jupyterlab.sh jupyternotebook/build.jupyternotebook.sh| xargs sed -i" s/VP_ORG_VER=.\+$/VP_ORG_VER=${VP_ORG_VER} /g"
19+ grep -REil" VP_NEW_VER=.+$" colab/build.colab.sh jupyterlab/build.jupyterlab.sh jupyternotebook/build.jupyternotebook.sh| xargs sed -i" s/VP_NEW_VER=.\+$/VP_NEW_VER=${VP_NEW_VER} /g"
20+
1121TEMP_PWD=$PWD
1222
1323# =============================================================================
@@ -28,6 +38,18 @@ cd $TEMP_PWD/jupyternotebook
2838cd $TEMP_PWD /jupyterlab
2939./build.jupyterlab.sh
3040
41+ # =============================================================================
42+ # Upload (for maintainer only)
43+ # =============================================================================
44+ # # jupyternotebook
45+ # python -m twine upload dist/jupyternotebook/dist/*
46+
47+ # # jupyterlab
48+ # python -m twine upload dist/jupyterlab/*
49+
50+ # # colab
51+ # # upload on chrome web store with blacklogic.dev
52+
3153exit 0
3254
3355# End of file