From 116b6f21d8ec823867df6b16075d1f1d625dc9ce Mon Sep 17 00:00:00 2001 From: Johan Wassberg Date: Wed, 21 Nov 2018 11:58:48 +0100 Subject: [PATCH] New release. --- Changes | 2 ++ META.json | 12 ++++++------ META.yml | 12 ++++++------ bin/check_nrpe.pl | 2 +- bin/nrpe-server.pl | 2 +- lib/Nagios/NRPE.pm | 2 +- lib/Nagios/NRPE/Client.pm | 2 +- lib/Nagios/NRPE/Daemon.pm | 2 +- lib/Nagios/NRPE/Packet.pm | 2 +- lib/Nagios/NRPE/Utils.pm | 2 +- 10 files changed, 21 insertions(+), 19 deletions(-) diff --git a/Changes b/Changes index 8e12c12..12a89f5 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,5 @@ +2.0.3 2018-11-21 + - Don't require Data::Dumper - trying to make CPAN Tester happy 2.0.2 2018-11-15 - Fix crc32 and padding problem 2.0.1 2018-11-09 diff --git a/META.json b/META.json index 1543007..94b9d37 100644 --- a/META.json +++ b/META.json @@ -52,23 +52,23 @@ "provides" : { "Nagios::NRPE" : { "file" : "lib/Nagios/NRPE.pm", - "version" : "v2.0.2" + "version" : "v2.0.3" }, "Nagios::NRPE::Client" : { "file" : "lib/Nagios/NRPE/Client.pm", - "version" : "v2.0.2" + "version" : "v2.0.3" }, "Nagios::NRPE::Daemon" : { "file" : "lib/Nagios/NRPE/Daemon.pm", - "version" : "v2.0.2" + "version" : "v2.0.3" }, "Nagios::NRPE::Packet" : { "file" : "lib/Nagios/NRPE/Packet.pm", - "version" : "v2.0.2" + "version" : "v2.0.3" }, "Nagios::NRPE::Utils" : { "file" : "lib/Nagios/NRPE/Utils.pm", - "version" : "v2.0.2" + "version" : "v2.0.3" } }, "release_status" : "stable", @@ -82,5 +82,5 @@ "url" : "git://github.com/stockholmuniversity/nagios-nrpe.git" } }, - "version" : "v2.0.2" + "version" : "v2.0.3" } diff --git a/META.yml b/META.yml index 8791f3e..0ebd31f 100644 --- a/META.yml +++ b/META.yml @@ -26,19 +26,19 @@ no_index: provides: Nagios::NRPE: file: lib/Nagios/NRPE.pm - version: v2.0.2 + version: v2.0.3 Nagios::NRPE::Client: file: lib/Nagios/NRPE/Client.pm - version: v2.0.2 + version: v2.0.3 Nagios::NRPE::Daemon: file: lib/Nagios/NRPE/Daemon.pm - version: v2.0.2 + version: v2.0.3 Nagios::NRPE::Packet: file: lib/Nagios/NRPE/Packet.pm - version: v2.0.2 + version: v2.0.3 Nagios::NRPE::Utils: file: lib/Nagios/NRPE/Utils.pm - version: v2.0.2 + version: v2.0.3 requires: Convert::Binary::C: 0 Digest::CRC: 0 @@ -52,4 +52,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.2 +version: v2.0.3 diff --git a/bin/check_nrpe.pl b/bin/check_nrpe.pl index 916d56e..4509063 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.2'; +our $VERSION = '2.0.3'; my ( $arglist, $bindaddr, $check, $host, $ipv4, $cipherlist, diff --git a/bin/nrpe-server.pl b/bin/nrpe-server.pl index de7efd0..0bbf0d0 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.2'; +our $VERSION = '2.0.3'; 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 6bce5d7..88a76fa 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.2'; +our $VERSION = '2.0.3'; 1; diff --git a/lib/Nagios/NRPE/Client.pm b/lib/Nagios/NRPE/Client.pm index b4ad817..f7aa64d 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.2'; +our $VERSION = '2.0.3'; use 5.010_000; diff --git a/lib/Nagios/NRPE/Daemon.pm b/lib/Nagios/NRPE/Daemon.pm index d5dfefa..9b9779e 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.2'; +our $VERSION = '2.0.3'; use 5.010_000; diff --git a/lib/Nagios/NRPE/Packet.pm b/lib/Nagios/NRPE/Packet.pm index 0444667..a0d604f 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.2'; +our $VERSION = '2.0.3'; use 5.010_000; require Exporter; diff --git a/lib/Nagios/NRPE/Utils.pm b/lib/Nagios/NRPE/Utils.pm index f2bdc17..74b9c70 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.2'; +our $VERSION = '2.0.3'; use strict; use warnings; require Exporter;