diff --git a/erbie_install.sh b/erbie_install.sh index dfcad952..9033edb5 100644 --- a/erbie_install.sh +++ b/erbie_install.sh @@ -1,6 +1,6 @@ #!/bin/bash #check docker cmd -echo "Script version Number: v0.14.4" +echo "Script version Number: v0.14.5" which docker >/dev/null 2>&1 if [ $? -ne 0 ] ; then echo "docker not found, please install first!" diff --git a/params/version.go b/params/version.go index bd10064d..135ee36d 100644 --- a/params/version.go +++ b/params/version.go @@ -23,7 +23,7 @@ import ( const ( VersionMajor = 0 // Major version component of the current release VersionMinor = 14 // Minor version component of the current release - VersionPatch = 4 // Patch version component of the current release + VersionPatch = 5 // Patch version component of the current release VersionMeta = "stable" // Version metadata to append to the version string )