Skip to content

Commit

Permalink
final preparations for version 2.9 release
Browse files Browse the repository at this point in the history
  • Loading branch information
vergoh committed Jan 23, 2022
1 parent 4bc389a commit 526961f
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion CHANGES
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
2.9 / <not released yet>
2.9 / 23-Jan-2022

- Fixed
- RescanDatabaseOnSave configuration option wasn't being read from the
Expand Down
20 changes: 10 additions & 10 deletions configure
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.69 for vnstat 2.9_beta1.
# Generated by GNU Autoconf 2.69 for vnstat 2.9.
#
#
# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
Expand Down Expand Up @@ -577,8 +577,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='vnstat'
PACKAGE_TARNAME='vnstat'
PACKAGE_VERSION='2.9_beta1'
PACKAGE_STRING='vnstat 2.9_beta1'
PACKAGE_VERSION='2.9'
PACKAGE_STRING='vnstat 2.9'
PACKAGE_BUGREPORT=''
PACKAGE_URL=''

Expand Down Expand Up @@ -1309,7 +1309,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
\`configure' configures vnstat 2.9_beta1 to adapt to many kinds of systems.
\`configure' configures vnstat 2.9 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
Expand Down Expand Up @@ -1380,7 +1380,7 @@ fi

if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of vnstat 2.9_beta1:";;
short | recursive ) echo "Configuration of vnstat 2.9:";;
esac
cat <<\_ACEOF
Expand Down Expand Up @@ -1488,7 +1488,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
vnstat configure 2.9_beta1
vnstat configure 2.9
generated by GNU Autoconf 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
Expand Down Expand Up @@ -2083,7 +2083,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by vnstat $as_me 2.9_beta1, which was
It was created by vnstat $as_me 2.9, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ $0 $@
Expand Down Expand Up @@ -2949,7 +2949,7 @@ fi

# Define the identity of the package.
PACKAGE='vnstat'
VERSION='2.9_beta1'
VERSION='2.9'


cat >>confdefs.h <<_ACEOF
Expand Down Expand Up @@ -6331,7 +6331,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by vnstat $as_me 2.9_beta1, which was
This file was extended by vnstat $as_me 2.9, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
Expand Down Expand Up @@ -6397,7 +6397,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
vnstat config.status 2.9_beta1
vnstat config.status 2.9
configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\"
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_INIT([vnstat], [2.9_beta1])
AC_INIT([vnstat], [2.9])
AM_INIT_AUTOMAKE([foreign subdir-objects std-options -Wall -Werror])
AM_MAINTAINER_MODE

Expand Down
6 changes: 3 additions & 3 deletions man/vnstat.1
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ vnstat \- a console-based network traffic monitor
.RB [ \-\-days
.RI [ limit ]]
.RB [ \-\-dbdir
.RI [ directory ]]
.IR directory ]
.RB [ \-\-dbiflist
.RI [ mode ]]
.RB [ \-\-debug ]
Expand Down Expand Up @@ -117,8 +117,8 @@ added interface to be monitored.

.TP
.BI "--alert " "output exit type condition limit unit"
Depending on values of given parameters, show alert or use different exit
status when configured situation is met.
Depending on values of given parameters, show alert, use different exit
status or a combination of both when configured situation is met.

.IP
.I output
Expand Down
2 changes: 1 addition & 1 deletion src/vnstat.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
vnStat - Copyright (C) 2002-2021 Teemu Toivola <tst@iki.fi>
vnStat - Copyright (C) 2002-2022 Teemu Toivola <tst@iki.fi>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion src/vnstat_func.c
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ void showlonghelp(PARAMS *p)
printf(" -e, --end <date> set list end date\n");
printf(" --oneline [mode] show simple parsable format\n");
printf(" --json [mode] [limit] show database in json format\n");
printf(" --xml [mode] [limit] show database in xml format\n\n");
printf(" --xml [mode] [limit] show database in xml format\n");
printf(" --alert <output> <exit> <type> <condition> <limit> <unit>\n");
printf(" alert if limit is exceeded\n\n");

Expand Down
2 changes: 1 addition & 1 deletion src/vnstatd.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
vnStat daemon - Copyright (C) 2008-2021 Teemu Toivola <tst@iki.fi>
vnStat daemon - Copyright (C) 2008-2022 Teemu Toivola <tst@iki.fi>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion src/vnstati.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
vnStat image output - Copyright (C) 2007-2021 Teemu Toivola <tst@iki.fi>
vnStat image output - Copyright (C) 2007-2022 Teemu Toivola <tst@iki.fi>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down

0 comments on commit 526961f

Please sign in to comment.