From 2d5e416592ff2fab507bd4ebfacab3a66a3b8e46 Mon Sep 17 00:00:00 2001 From: Ton Voon Date: Wed, 18 Oct 2006 11:51:20 +0000 Subject: 0.14 uploaded to CPAN. Version numbers changed and updated Changes file git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/Nagios-Plugin/trunk@1495 f882894a-f735-0410-b71e-b25c423dba1c diff --git a/Changes b/Changes index e377a45..7afd956 100644 --- a/Changes +++ b/Changes @@ -1,8 +1,11 @@ Revision history for Perl module Nagios::Plugin. -0.13 ??? +0.14 18th October 2006 + - Fixed version number due to CPAN upload + +0.13 18th October 2006 - Lots of extra tests and fixes from Nathan Vonnahme - - Nagios::Plugin::Getopt added by Gavin Carr + - Nagios::Plugin::Getopt, Functions and ExitResult added by Gavin Carr 0.12 15th June 2006 - rrdlabel method available to get a performance label, diff --git a/META.yml b/META.yml index bd2b6e2..223f6bb 100644 --- a/META.yml +++ b/META.yml @@ -1,11 +1,15 @@ # http://module-build.sourceforge.net/META-spec.html #XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX# name: Nagios-Plugin -version: 0.13 -version_from: lib/Nagios/Plugin/Base.pm +version: 0.14 +version_from: lib/Nagios/Plugin/Functions.pm installdirs: site requires: + Carp: 0 + Class::Accessor: 0.22 + Class::Struct: 0 Params::Validate: 0.24 + Test::More: 0.62 distribution_type: module generated_by: ExtUtils::MakeMaker version 6.17 diff --git a/lib/Nagios/Plugin.pm b/lib/Nagios/Plugin.pm index 29b79b9..71d12ed 100644 --- a/lib/Nagios/Plugin.pm +++ b/lib/Nagios/Plugin.pm @@ -23,7 +23,8 @@ our @ISA = qw(Exporter Nagios::__::Plugin); our @EXPORT = (@STATUS_CODES); our @EXPORT_OK = qw(%ERRORS); -our $VERSION = $Nagios::Plugin::Functions::VERSION; +# Remember to update Nagios::Plugin::Functions as well! +our $VERSION = "0.14"; sub add_perfdata { my ($self, %args) = @_; diff --git a/lib/Nagios/Plugin/Functions.pm b/lib/Nagios/Plugin/Functions.pm index 4e099c2..5772c97 100644 --- a/lib/Nagios/Plugin/Functions.pm +++ b/lib/Nagios/Plugin/Functions.pm @@ -10,7 +10,8 @@ use warnings; use File::Basename; use Params::Validate qw(validate :types); -our $VERSION = "0.13"; +# Remember to update Nagios::Plugins as well +our $VERSION = "0.14"; our @STATUS_CODES = qw(OK WARNING CRITICAL UNKNOWN DEPENDENT); -- cgit v0.10-9-g596f