From 5a310ad7467d3d968cf3320b2f8f6c506900c82a Mon Sep 17 00:00:00 2001 From: Mihai Budiu Date: Tue, 2 Feb 2021 15:22:48 -0800 Subject: [PATCH] Bump version number --- bin/install-hillview.ps1 | 2 +- bin/install.sh | 2 +- bin/package-binaries.sh | 5 ----- 3 files changed, 2 insertions(+), 7 deletions(-) diff --git a/bin/install-hillview.ps1 b/bin/install-hillview.ps1 index cc2958808..fee1508aa 100755 --- a/bin/install-hillview.ps1 +++ b/bin/install-hillview.ps1 @@ -1,7 +1,7 @@ # This Powershell script installs the software needed to run Hillview on Windows TOMCATVERSION="9.0.4" -HILLVIEW_VERSION="0.9-beta" +HILLVIEW_VERSION="0.9.1-beta" echo "Installing apache Tomcat web server" if ( -not ( Test-Path ".\apache-tomcat-$TOMCATVERSION" )) { diff --git a/bin/install.sh b/bin/install.sh index ef0d23422..1e7e9e860 100755 --- a/bin/install.sh +++ b/bin/install.sh @@ -2,7 +2,7 @@ # Script which downloads and installs the Hillview release on the local machine # http://github.com/vmware/hillview -HILLVIEW_VERSION="0.9-beta" +HILLVIEW_VERSION="0.9.1-beta" mydir="$(dirname -- "$0")" if [[ ! -d "${mydir}" ]]; then mydir="${PWD}"; fi diff --git a/bin/package-binaries.sh b/bin/package-binaries.sh index e22249d7f..b332a0cc7 100755 --- a/bin/package-binaries.sh +++ b/bin/package-binaries.sh @@ -7,9 +7,7 @@ set -ex ARCHIVE=hillview-bin.zip -#TARARCHIVE=hillview.tar.gz -#echo "Creating ${ARCHIVE} and ${TARARCHIVE} in toplevel directory." echo "Creating ${ARCHIVE} in toplevel directory." cd .. @@ -18,7 +16,4 @@ FILES="platform/target/hillview-server-jar-with-dependencies.jar web/target/web- rm -f ${ARCHIVE} zip ${ARCHIVE} ${FILES} -#rm -f ${TARARCHIVE} -#tar cvfz ${TARARCHIVE} ${FILES} - cd bin