diff --git a/Changes b/Changes index b812f00..76236a4 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,6 @@ +2.0.8 2018-11-29 + - Yet another attempt to fix CPANTS warnings for manifest + 2.0.7 2018-11-29 - Another attempt to fix CPANTS warnings for manifest diff --git a/MANIFEST b/MANIFEST index 2c32581..b360096 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1,3 +1,4 @@ +.gitignore AUTHORS bin/check_nrpe.pl bin/nrpe-server.pl @@ -17,3 +18,4 @@ README share/nrpe.cfg share/protocol-nrpe.md t/packet.t +xt/AMARSCHKE/podcoverage diff --git a/META.json b/META.json index a91009a..b8dc642 100644 --- a/META.json +++ b/META.json @@ -54,23 +54,23 @@ "provides" : { "Nagios::NRPE" : { "file" : "lib/Nagios/NRPE.pm", - "version" : "v2.0.7" + "version" : "v2.0.8" }, "Nagios::NRPE::Client" : { "file" : "lib/Nagios/NRPE/Client.pm", - "version" : "v2.0.7" + "version" : "v2.0.8" }, "Nagios::NRPE::Daemon" : { "file" : "lib/Nagios/NRPE/Daemon.pm", - "version" : "v2.0.7" + "version" : "v2.0.8" }, "Nagios::NRPE::Packet" : { "file" : "lib/Nagios/NRPE/Packet.pm", - "version" : "v2.0.7" + "version" : "v2.0.8" }, "Nagios::NRPE::Utils" : { "file" : "lib/Nagios/NRPE/Utils.pm", - "version" : "v2.0.7" + "version" : "v2.0.8" } }, "release_status" : "stable", @@ -84,5 +84,5 @@ "url" : "git://github.com/stockholmuniversity/nagios-nrpe.git" } }, - "version" : "v2.0.7" + "version" : "v2.0.8" } diff --git a/META.yml b/META.yml index 4222a01..23b2da0 100644 --- a/META.yml +++ b/META.yml @@ -26,19 +26,19 @@ no_index: provides: Nagios::NRPE: file: lib/Nagios/NRPE.pm - version: v2.0.7 + version: v2.0.8 Nagios::NRPE::Client: file: lib/Nagios/NRPE/Client.pm - version: v2.0.7 + version: v2.0.8 Nagios::NRPE::Daemon: file: lib/Nagios/NRPE/Daemon.pm - version: v2.0.7 + version: v2.0.8 Nagios::NRPE::Packet: file: lib/Nagios/NRPE/Packet.pm - version: v2.0.7 + version: v2.0.8 Nagios::NRPE::Utils: file: lib/Nagios/NRPE/Utils.pm - version: v2.0.7 + version: v2.0.8 requires: Convert::Binary::C: 0 Digest::CRC: 0 @@ -54,4 +54,4 @@ resources: homepage: http://github.com/stockholmuniversity/nagios-nrpe license: http://dev.perl.org/licenses/ repository: git://github.com/stockholmuniversity/nagios-nrpe.git -version: v2.0.7 +version: v2.0.8 diff --git a/bin/check_nrpe.pl b/bin/check_nrpe.pl index 74219ff..86e4c40 100755 --- a/bin/check_nrpe.pl +++ b/bin/check_nrpe.pl @@ -79,7 +79,7 @@ =head1 COPYRIGHT AND LICENSE use Data::Dumper; use Nagios::NRPE::Client; -our $VERSION = '2.0.7'; +our $VERSION = '2.0.8'; my ( $arglist, $bindaddr, $check, $host, $ipv4, $cipherlist, diff --git a/bin/nrpe-server.pl b/bin/nrpe-server.pl index c4c4905..ac55233 100755 --- a/bin/nrpe-server.pl +++ b/bin/nrpe-server.pl @@ -43,7 +43,7 @@ =head1 COPYRIGHT AND LICENSE use Nagios::NRPE::Packet qw(STATE_UNKNOWN); use threads; -our $VERSION = '2.0.7'; +our $VERSION = '2.0.8'; use constant {NRPE_CONF_DIR => '/etc/nagios'}; my ($listen_cmd, $port_cmd, $config_cmd, $pid_cmd, $ssl_cmd, $adh_cmd); diff --git a/lib/Nagios/NRPE.pm b/lib/Nagios/NRPE.pm index 01a6570..ea3f538 100644 --- a/lib/Nagios/NRPE.pm +++ b/lib/Nagios/NRPE.pm @@ -63,6 +63,6 @@ package Nagios::NRPE; use strict; use warnings; -our $VERSION = '2.0.7'; +our $VERSION = '2.0.8'; 1; diff --git a/lib/Nagios/NRPE/Client.pm b/lib/Nagios/NRPE/Client.pm index 0978b28..6fee158 100644 --- a/lib/Nagios/NRPE/Client.pm +++ b/lib/Nagios/NRPE/Client.pm @@ -30,7 +30,7 @@ the same terms as the Perl 5 programming language system itself. package Nagios::NRPE::Client; -our $VERSION = '2.0.7'; +our $VERSION = '2.0.8'; use 5.010_000; diff --git a/lib/Nagios/NRPE/Daemon.pm b/lib/Nagios/NRPE/Daemon.pm index 596795e..91e9826 100644 --- a/lib/Nagios/NRPE/Daemon.pm +++ b/lib/Nagios/NRPE/Daemon.pm @@ -59,7 +59,7 @@ and hooks in case you want to build your own NRPE Server. package Nagios::NRPE::Daemon; -our $VERSION = '2.0.7'; +our $VERSION = '2.0.8'; use 5.010_000; diff --git a/lib/Nagios/NRPE/Packet.pm b/lib/Nagios/NRPE/Packet.pm index 85ebffa..044935c 100644 --- a/lib/Nagios/NRPE/Packet.pm +++ b/lib/Nagios/NRPE/Packet.pm @@ -186,7 +186,7 @@ the same terms as the Perl 5 programming language system itself. package Nagios::NRPE::Packet; -our $VERSION = '2.0.7'; +our $VERSION = '2.0.8'; use 5.010_000; require Exporter; diff --git a/lib/Nagios/NRPE/Utils.pm b/lib/Nagios/NRPE/Utils.pm index da2ac4f..91f9fda 100644 --- a/lib/Nagios/NRPE/Utils.pm +++ b/lib/Nagios/NRPE/Utils.pm @@ -32,7 +32,7 @@ Create a hash with the specified error message using this format package Nagios::NRPE::Utils; -our $VERSION = '2.0.7'; +our $VERSION = '2.0.8'; use strict; use warnings; require Exporter;