diff options
author | Tobi Oetiker <tobi@oetiker.ch> | 2007-09-06 17:43:45 +0200 |
---|---|---|
committer | Tobi Oetiker <tobi@oetiker.ch> | 2007-09-06 17:43:45 +0200 |
commit | fa5abd5d25b193c47400f116c852c0a0b176322a (patch) | |
tree | 7795fdd0e25d28c7741c265619fa1fde81655c0c | |
parent | 36ab642eaaa3a27e346659bef7fff07b3733ca30 (diff) | |
download | smokeping-fa5abd5d25b193c47400f116c852c0a0b176322a.tar.gz smokeping-fa5abd5d25b193c47400f116c852c0a0b176322a.tar.xz |
prepare for the release of smokeping-2.2.3
-rw-r--r-- | Makefile | 4 | ||||
-rwxr-xr-x | bin/smokeping.dist | 2 | ||||
-rwxr-xr-x | bin/tSmoke.dist | 2 | ||||
-rwxr-xr-x | htdocs/smokeping.cgi.dist | 2 | ||||
-rw-r--r-- | lib/Smokeping.pm | 2 |
5 files changed, 6 insertions, 6 deletions
@@ -1,11 +1,11 @@ SHELL = /bin/sh -VERSION = 2.2.2 +VERSION = 2.2.3 ############ A is for features ############ B is for bugfixes ############ V.AAABBB ############ 2.000001 ############ 2.000002 -NUMVERSION = 2.002002 +NUMVERSION = 2.002003 IGNORE = ~|CVS|var/|smokeping-$(VERSION)/smokeping-$(VERSION)|cvsignore|rej|orig|DEAD|pod2htm[di]\.tmp|\.svn|tar\.gz|DEADJOE|svn-commit\.tmp GROFF = groff PERL = perl-5.8.8 diff --git a/bin/smokeping.dist b/bin/smokeping.dist index 86fa4be..5ce283e 100755 --- a/bin/smokeping.dist +++ b/bin/smokeping.dist @@ -4,7 +4,7 @@ use lib qw(/usr/pack/rrdtool-1.2.23-mo/lib/perl); use lib qw(lib); -use Smokeping 2.002002; +use Smokeping 2.002003; Smokeping::main("etc/config.dist"); diff --git a/bin/tSmoke.dist b/bin/tSmoke.dist index 3a90267..24049d8 100755 --- a/bin/tSmoke.dist +++ b/bin/tSmoke.dist @@ -53,7 +53,7 @@ use strict; use lib qw(lib); use lib "/usr/local/rrdtool-1.0.39/lib/perl"; -use Smokeping 2.002002; +use Smokeping 2.002003; use Net::SMTP; use Getopt::Long; use Pod::Usage; diff --git a/htdocs/smokeping.cgi.dist b/htdocs/smokeping.cgi.dist index d9b0df2..8a4abbd 100755 --- a/htdocs/smokeping.cgi.dist +++ b/htdocs/smokeping.cgi.dist @@ -5,7 +5,7 @@ use lib qw(/usr/pack/rrdtool-1.0.33-to/lib/perl); use lib qw(/home/oetiker/data/projects/AADJ-smokeping/dist/lib); use CGI::Carp qw(fatalsToBrowser); -use Smokeping 2.002002; +use Smokeping 2.002003; Smokeping::cgi("/home/oetiker/data/projects/AADJ-smokeping/dist/etc/config"); diff --git a/lib/Smokeping.pm b/lib/Smokeping.pm index 40beeb6..f1a8a2a 100644 --- a/lib/Smokeping.pm +++ b/lib/Smokeping.pm @@ -37,7 +37,7 @@ use Smokeping::RRDtools; # globale persistent variables for speedy use vars qw($cfg $probes $VERSION $havegetaddrinfo $cgimode); -$VERSION="2.002002"; +$VERSION="2.002003"; # we want opts everywhere my %opt; |