summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Changes5
-rw-r--r--META.yml2
-rw-r--r--lib/Nagios/Plugin.pm5
-rw-r--r--lib/Nagios/Plugin/Functions.pm2
4 files changed, 10 insertions, 4 deletions
diff --git a/Changes b/Changes
index 3340928..67e36fe 100644
--- a/Changes
+++ b/Changes
@@ -1,6 +1,9 @@
1Revision history for Perl module Nagios::Plugin. 1Revision history for Perl module Nagios::Plugin.
2 2
30.16 ?? 30.17 23rd March 2007
4 - bump version number again due to cpan indexing stupidity (Gavin)
5
60.16 23rd March 2007
4 - added support for multi-entry help output (e.g. two separate help entries for --warning) (Gavin) 7 - added support for multi-entry help output (e.g. two separate help entries for --warning) (Gavin)
5 - added automatic spec-to-help-text support to N::P::Getopt (Gavin) 8 - added automatic spec-to-help-text support to N::P::Getopt (Gavin)
6 - added initial --extra-opts support to N::P::Getopt (Gavin) 9 - added initial --extra-opts support to N::P::Getopt (Gavin)
diff --git a/META.yml b/META.yml
index 159e10d..b93abcf 100644
--- a/META.yml
+++ b/META.yml
@@ -1,7 +1,7 @@
1# http://module-build.sourceforge.net/META-spec.html 1# http://module-build.sourceforge.net/META-spec.html
2#XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX# 2#XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX#
3name: Nagios-Plugin 3name: Nagios-Plugin
4version: 0.16 4version: 0.17
5version_from: lib/Nagios/Plugin/Functions.pm 5version_from: lib/Nagios/Plugin/Functions.pm
6installdirs: site 6installdirs: site
7requires: 7requires:
diff --git a/lib/Nagios/Plugin.pm b/lib/Nagios/Plugin.pm
index b063e4c..459e6bb 100644
--- a/lib/Nagios/Plugin.pm
+++ b/lib/Nagios/Plugin.pm
@@ -22,7 +22,10 @@ our @ISA = qw(Exporter);
22our @EXPORT = (@STATUS_CODES); 22our @EXPORT = (@STATUS_CODES);
23our @EXPORT_OK = qw(%ERRORS); 23our @EXPORT_OK = qw(%ERRORS);
24 24
25our $VERSION = $Nagios::Plugin::Functions::VERSION; 25# CPAN stupidly won't index this module without a literal $VERSION here,
26# so we're forced to duplicate it explicitly
27our $VERSION = 0.17;
28# our $VERSION = $Nagios::Plugin::Functions::VERSION;
26 29
27sub new { 30sub new {
28 my $class = shift; 31 my $class = shift;
diff --git a/lib/Nagios/Plugin/Functions.pm b/lib/Nagios/Plugin/Functions.pm
index eb44976..f750968 100644
--- a/lib/Nagios/Plugin/Functions.pm
+++ b/lib/Nagios/Plugin/Functions.pm
@@ -12,7 +12,7 @@ use Params::Validate qw(validate :types);
12use Math::Calc::Units; 12use Math::Calc::Units;
13 13
14# Remember to update Nagios::Plugins as well 14# Remember to update Nagios::Plugins as well
15our $VERSION = "0.16"; 15our $VERSION = 0.17;
16 16
17our @STATUS_CODES = qw(OK WARNING CRITICAL UNKNOWN DEPENDENT); 17our @STATUS_CODES = qw(OK WARNING CRITICAL UNKNOWN DEPENDENT);
18 18