Skip to content

Commit 9de9d52

Browse files
committedFeb 16, 2017
Updated ChangeLog and tagging 1.10 release
1 parent 1dc48ba commit 9de9d52

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed
 

‎ChangeLog

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
AnsiWeather 1.10 (2017-02-16)
2+
3+
- Add a '-v' option to show version number
4+
- Exit with error code when an unknown option is invoked
5+
- Make wind direction customizable
6+
7+
8+
19
AnsiWeather 1.09 (2016-10-18)
210

311
- Allow toggling display of wind, humidity, and pressure data (Thanks

‎ansiweather

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
###############################################################################
44
# #
5-
# AnsiWeather 1.09 #
5+
# AnsiWeather 1.10 #
66
# Copyright (c) 2013-2017, Frederic Cambus #
77
# https://github.com/fcambus/ansiweather #
88
# #
99
# Created: 2013-08-29 #
10-
# Last Updated: 2017-02-02 #
10+
# Last Updated: 2017-02-16 #
1111
# #
1212
# AnsiWeather is released under the BSD 2-Clause license. #
1313
# See LICENSE file for details. #
@@ -59,7 +59,7 @@ do
5959
h) show_humidity=${OPTARG};;
6060
p) show_pressure=${OPTARG};;
6161
d) show_daylight=${OPTARG};;
62-
v) echo "AnsiWeather 1.09" && exit 0;;
62+
v) echo "AnsiWeather 1.10" && exit 0;;
6363
\?) exit 64;; # EX_USAGE
6464
esac
6565
done

0 commit comments

Comments
 (0)