Skip to content

Commit

Permalink
Changed release date to ISO format (yyyy-mm-dd)
Browse files Browse the repository at this point in the history
  • Loading branch information
John C. Frickson committed Mar 3, 2017
1 parent 433aa8e commit 28bd205
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions Changelog
Expand Up @@ -2,6 +2,11 @@
NSCA Changelog
**************

x.x.x - xxxx-xx-xx
------------------
- Changed release date to ISO format (yyyy-mm-dd) (John Frickson)


2.9.2 - 2016-12-07
------------------
- Renamed configure.in to configure.ac and added check for sigaction (John Frickson)
Expand All @@ -10,6 +15,7 @@ NSCA Changelog
- Fix missing argument in open calls (Xavier Bachelot / John Frickson)
- NSCA close/POLLNVAL/accept bug causes hang (mib / John Frickson)


2.9.1 - 01/27/2012
------------------
- Applied patch to allow packets arriving with a future time stamp (Daniel Wittenberg)
Expand Down
6 changes: 3 additions & 3 deletions update-version
Expand Up @@ -3,17 +3,17 @@
# Get date (two formats)
if [ -n "$2" ]; then
LONGDATE=`date -d "$2" "+%B %d, %Y"`
SHORTDATE=`date -d "$2" "+%m-%d-%Y"`
SHORTDATE=`date -d "$2" "+%Y-%m-%d"`
else
LONGDATE=`date "+%B %d, %Y"`
SHORTDATE=`date "+%m-%d-%Y"`
SHORTDATE=`date "+%Y-%m-%d"`
fi

# Current version number
CURRENTVERSION=2.9.2

# Last date
LASTDATE=12-07-2016
LASTDATE=2016-12-07

if [ "x$1" = "x" ]
then
Expand Down

0 comments on commit 28bd205

Please sign in to comment.