diff --git a/ChangeLog b/ChangeLog index 06172de..270e38b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +AnsiWeather 1.10 (2017-02-16) + +- Add a '-v' option to show version number +- Exit with error code when an unknown option is invoked +- Make wind direction customizable + + + AnsiWeather 1.09 (2016-10-18) - Allow toggling display of wind, humidity, and pressure data (Thanks diff --git a/ansiweather b/ansiweather index 12e8e3c..6b17c4f 100755 --- a/ansiweather +++ b/ansiweather @@ -2,12 +2,12 @@ ############################################################################### # # -# AnsiWeather 1.09 # +# AnsiWeather 1.10 # # Copyright (c) 2013-2017, Frederic Cambus # # https://github.com/fcambus/ansiweather # # # # Created: 2013-08-29 # -# Last Updated: 2017-02-02 # +# Last Updated: 2017-02-16 # # # # AnsiWeather is released under the BSD 2-Clause license. # # See LICENSE file for details. # @@ -59,7 +59,7 @@ do h) show_humidity=${OPTARG};; p) show_pressure=${OPTARG};; d) show_daylight=${OPTARG};; - v) echo "AnsiWeather 1.09" && exit 0;; + v) echo "AnsiWeather 1.10" && exit 0;; \?) exit 64;; # EX_USAGE esac done