diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 13a2224..994a79f 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,7 @@ +Release 2.0.2 (August 8th 2024) + = = = + - Patched a bug that made -v/--version flag not be able to run on its own + Release 2.0.1 (July 27th 2024) = = = - Patched mis-written variables, causing not all official package managers to be run diff --git a/update_full-unix.sh b/update_full-unix.sh index 892bd08..174df3e 100644 --- a/update_full-unix.sh +++ b/update_full-unix.sh @@ -1,6 +1,6 @@ # Written by Mikhail P. Ortiz-Lunyov (mportizlunyov) # -# Version 2.0.1 (July 27th, 2024) +# Version 2.0.2 (August 8th, 2024) # # This script is licensed under the GNU Public License Version 3 (GPLv3). # Compatible and tested with BASH, SH, KSH, ASH, DASH and ZSH[Not Working]. @@ -14,8 +14,8 @@ # Critical variables ## Version variables -VERSION_NUMB="2.0.1" -VERSION_NAME="July 27th, 2024" +VERSION_NUMB="2.0.2" +VERSION_NAME="August 8th 2024" VERSION_NAME_FULL="v$VERSION_NUMB ($VERSION_NAME)" ## Dependencies DEPENDENCY_LIST="ping curl wget" @@ -1148,6 +1148,7 @@ for INFORMATIONAL_ARGS in "$@" ; do "-v"|"--version") echo " = = =" echo "$0 $VERSION_NAME_FULL" + INFORMATIONAL_EXIT=true ;; "-h"|"--help") HelpMessage ;; "-w "|"--warranty") WarrantyMessage ;;