Release v8.2.4

This commit is contained in:
Bryan Stansell 2019-03-26 22:23:38 -07:00
parent 1687e20148
commit 6c543f8137
No known key found for this signature in database
GPG Key ID: 28E4B7253029E7F6
3 changed files with 840 additions and 830 deletions

10
CHANGES
View File

@ -1,6 +1,16 @@
CHANGES
=======
version 8.2.4 (March 26, 2019):
- Correct man page typo (Ed Maste <emaste@freebsd.org>)
- Remove autotools generated files from repo and create with release
- Better integration of Cirrus CI - FreeBSD, Linux, and MacOS
- Moving README to markdown
- Fix #12 - Remote infomation flags (i.e. "-x") cannot be filtered by console
- Fix #8 - defaultaccess appears broken
- Rename configure.in and use autoreconf
- Better use of version.h and letting configure build things with versions
version 8.2.3 (March 17, 2019):
- Correct 'impi' typo (Ed Maste <emaste@freebsd.org>)
- Correct argument type passed to time() (Ed Maste <emaste@freebsd.org>)

View File

@ -12,9 +12,9 @@
@(#) Copyright 2000 conserver.com.\n\
All rights reserved.\n"
#define VERSION_DATE "2019/03/17"
#define VERSION_DATE "2019/03/26"
#define VERSION_MAJOR 8
#define VERSION_MINOR 2
#define VERSION_REV 3
#define VERSION_REV 4
#define VERSION_TEXT "conserver.com version"
#define VERSION_UINT (VERSION_MAJOR * 1000000 + VERSION_MINOR * 1000 + VERSION_REV)

View File

@ -7,4 +7,4 @@ range="$1"
date=`./package/get-version date`
changedate=`date -j -f '%Y/%m/%d' "$date" '+%B %-d, %Y'`
echo "version `./package/get-version number` ($changedate):"
git log --no-merges --pretty=tformat:' - %s (%an <%ae>)' "$range" | tail -r | awk '{if (! l[$0]) {l[$0]++; print}}' | sed -e 's/(Bryan Stansell <bryan@conserver.com>)$//'
git log --no-merges --pretty=tformat:' - %s (%an <%ae>)' "$range" | tail -r | awk '{if (! l[$0]) {l[$0]++; print}}' | sed -e 's/ *(Bryan Stansell <bryan@conserver.com>)$//'