From 44d7a9221164501ed4d4c0ff657c0e50757f3296 Mon Sep 17 00:00:00 2001 From: Mikael Nordin Date: Mon, 3 Dec 2018 11:46:32 +0100 Subject: [PATCH] Version 2.0.9 --- Changes | 3 +++ 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, 22 insertions(+), 19 deletions(-) diff --git a/Changes b/Changes index 76236a4..e29ac22 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,6 @@ +2.0.9 2018-12-03 + - Fix typo in manifest + 2.0.8 2018-11-29 - Yet another attempt to fix CPANTS warnings for manifest diff --git a/META.json b/META.json index b8dc642..d7a1a76 100644 --- a/META.json +++ b/META.json @@ -54,23 +54,23 @@ "provides" : { "Nagios::NRPE" : { "file" : "lib/Nagios/NRPE.pm", - "version" : "v2.0.8" + "version" : "v2.0.9" }, "Nagios::NRPE::Client" : { "file" : "lib/Nagios/NRPE/Client.pm", - "version" : "v2.0.8" + "version" : "v2.0.9" }, "Nagios::NRPE::Daemon" : { "file" : "lib/Nagios/NRPE/Daemon.pm", - "version" : "v2.0.8" + "version" : "v2.0.9" }, "Nagios::NRPE::Packet" : { "file" : "lib/Nagios/NRPE/Packet.pm", - "version" : "v2.0.8" + "version" : "v2.0.9" }, "Nagios::NRPE::Utils" : { "file" : "lib/Nagios/NRPE/Utils.pm", - "version" : "v2.0.8" + "version" : "v2.0.9" } }, "release_status" : "stable", @@ -84,5 +84,5 @@ "url" : "git://github.com/stockholmuniversity/nagios-nrpe.git" } }, - "version" : "v2.0.8" + "version" : "v2.0.9" } diff --git a/META.yml b/META.yml index 23b2da0..d3f7e8e 100644 --- a/META.yml +++ b/META.yml @@ -26,19 +26,19 @@ no_index: provides: Nagios::NRPE: file: lib/Nagios/NRPE.pm - version: v2.0.8 + version: v2.0.9 Nagios::NRPE::Client: file: lib/Nagios/NRPE/Client.pm - version: v2.0.8 + version: v2.0.9 Nagios::NRPE::Daemon: file: lib/Nagios/NRPE/Daemon.pm - version: v2.0.8 + version: v2.0.9 Nagios::NRPE::Packet: file: lib/Nagios/NRPE/Packet.pm - version: v2.0.8 + version: v2.0.9 Nagios::NRPE::Utils: file: lib/Nagios/NRPE/Utils.pm - version: v2.0.8 + version: v2.0.9 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.8 +version: v2.0.9 diff --git a/bin/check_nrpe.pl b/bin/check_nrpe.pl index 86e4c40..09df4b0 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.8'; +our $VERSION = '2.0.9'; my ( $arglist, $bindaddr, $check, $host, $ipv4, $cipherlist, diff --git a/bin/nrpe-server.pl b/bin/nrpe-server.pl index ac55233..6b6ae57 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.8'; +our $VERSION = '2.0.9'; 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 ea3f538..e5308a1 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.8'; +our $VERSION = '2.0.9'; 1; diff --git a/lib/Nagios/NRPE/Client.pm b/lib/Nagios/NRPE/Client.pm index 6fee158..5d5f1da 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.8'; +our $VERSION = '2.0.9'; use 5.010_000; diff --git a/lib/Nagios/NRPE/Daemon.pm b/lib/Nagios/NRPE/Daemon.pm index 91e9826..a63b255 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.8'; +our $VERSION = '2.0.9'; use 5.010_000; diff --git a/lib/Nagios/NRPE/Packet.pm b/lib/Nagios/NRPE/Packet.pm index 044935c..afc8ec2 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.8'; +our $VERSION = '2.0.9'; use 5.010_000; require Exporter; diff --git a/lib/Nagios/NRPE/Utils.pm b/lib/Nagios/NRPE/Utils.pm index 91f9fda..e9dde6e 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.8'; +our $VERSION = '2.0.9'; use strict; use warnings; require Exporter;