Skip to content

Commit

Permalink
Update version again
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikael Nordin committed Nov 28, 2018
1 parent 25a04c1 commit 618da0a
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 19 deletions.
12 changes: 6 additions & 6 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,23 +54,23 @@
"provides" : {
"Nagios::NRPE" : {
"file" : "lib/Nagios/NRPE.pm",
"version" : "v2.0.5"
"version" : "v2.0.6"
},
"Nagios::NRPE::Client" : {
"file" : "lib/Nagios/NRPE/Client.pm",
"version" : "v2.0.5"
"version" : "v2.0.6"
},
"Nagios::NRPE::Daemon" : {
"file" : "lib/Nagios/NRPE/Daemon.pm",
"version" : "v2.0.5"
"version" : "v2.0.6"
},
"Nagios::NRPE::Packet" : {
"file" : "lib/Nagios/NRPE/Packet.pm",
"version" : "v2.0.5"
"version" : "v2.0.6"
},
"Nagios::NRPE::Utils" : {
"file" : "lib/Nagios/NRPE/Utils.pm",
"version" : "v2.0.5"
"version" : "v2.0.6"
}
},
"release_status" : "stable",
Expand All @@ -84,5 +84,5 @@
"url" : "git://github.com/stockholmuniversity/nagios-nrpe.git"
}
},
"version" : "v2.0.5"
"version" : "v2.0.6"
}
12 changes: 6 additions & 6 deletions META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,19 +26,19 @@ no_index:
provides:
Nagios::NRPE:
file: lib/Nagios/NRPE.pm
version: v2.0.5
version: v2.0.6
Nagios::NRPE::Client:
file: lib/Nagios/NRPE/Client.pm
version: v2.0.5
version: v2.0.6
Nagios::NRPE::Daemon:
file: lib/Nagios/NRPE/Daemon.pm
version: v2.0.5
version: v2.0.6
Nagios::NRPE::Packet:
file: lib/Nagios/NRPE/Packet.pm
version: v2.0.5
version: v2.0.6
Nagios::NRPE::Utils:
file: lib/Nagios/NRPE/Utils.pm
version: v2.0.5
version: v2.0.6
requires:
Convert::Binary::C: 0
Digest::CRC: 0
Expand All @@ -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.5
version: v2.0.6
2 changes: 1 addition & 1 deletion bin/check_nrpe.pl
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ =head1 COPYRIGHT AND LICENSE
use Data::Dumper;
use Nagios::NRPE::Client;

our $VERSION = '2.0.5';
our $VERSION = '2.0.6';

my (
$arglist, $bindaddr, $check, $host, $ipv4, $cipherlist,
Expand Down
2 changes: 1 addition & 1 deletion bin/nrpe-server.pl
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ =head1 COPYRIGHT AND LICENSE
use Nagios::NRPE::Packet qw(STATE_UNKNOWN);
use threads;

our $VERSION = '2.0.5';
our $VERSION = '2.0.6';

use constant {NRPE_CONF_DIR => '/etc/nagios'};
my ($listen_cmd, $port_cmd, $config_cmd, $pid_cmd, $ssl_cmd, $adh_cmd);
Expand Down
2 changes: 1 addition & 1 deletion lib/Nagios/NRPE.pm
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,6 @@ package Nagios::NRPE;
use strict;
use warnings;

our $VERSION = '2.0.5';
our $VERSION = '2.0.6';

1;
2 changes: 1 addition & 1 deletion lib/Nagios/NRPE/Client.pm
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ the same terms as the Perl 5 programming language system itself.

package Nagios::NRPE::Client;

our $VERSION = '2.0.5';
our $VERSION = '2.0.6';

use 5.010_000;

Expand Down
2 changes: 1 addition & 1 deletion lib/Nagios/NRPE/Daemon.pm
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ and hooks in case you want to build your own NRPE Server.

package Nagios::NRPE::Daemon;

our $VERSION = '2.0.5';
our $VERSION = '2.0.6';

use 5.010_000;

Expand Down
2 changes: 1 addition & 1 deletion lib/Nagios/NRPE/Packet.pm
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ the same terms as the Perl 5 programming language system itself.

package Nagios::NRPE::Packet;

our $VERSION = '2.0.5';
our $VERSION = '2.0.6';

use 5.010_000;
require Exporter;
Expand Down
2 changes: 1 addition & 1 deletion lib/Nagios/NRPE/Utils.pm
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Create a hash with the specified error message using this format

package Nagios::NRPE::Utils;

our $VERSION = '2.0.5';
our $VERSION = '2.0.6';
use strict;
use warnings;
require Exporter;
Expand Down

0 comments on commit 618da0a

Please sign in to comment.