Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikael Nordin committed Nov 29, 2018
1 parent 02c5894 commit acb0986
Show file tree
Hide file tree
Showing 10 changed files with 22 additions and 19 deletions.
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2.0.7 2018-11-29
- Another attempt to fix CPANTS warnings for manifest

2.0.6 2018-11-28
- Fix manifest and meta

Expand Down
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.6"
"version" : "v2.0.7"
},
"Nagios::NRPE::Client" : {
"file" : "lib/Nagios/NRPE/Client.pm",
"version" : "v2.0.6"
"version" : "v2.0.7"
},
"Nagios::NRPE::Daemon" : {
"file" : "lib/Nagios/NRPE/Daemon.pm",
"version" : "v2.0.6"
"version" : "v2.0.7"
},
"Nagios::NRPE::Packet" : {
"file" : "lib/Nagios/NRPE/Packet.pm",
"version" : "v2.0.6"
"version" : "v2.0.7"
},
"Nagios::NRPE::Utils" : {
"file" : "lib/Nagios/NRPE/Utils.pm",
"version" : "v2.0.6"
"version" : "v2.0.7"
}
},
"release_status" : "stable",
Expand All @@ -84,5 +84,5 @@
"url" : "git://github.com/stockholmuniversity/nagios-nrpe.git"
}
},
"version" : "v2.0.6"
"version" : "v2.0.7"
}
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.6
version: v2.0.7
Nagios::NRPE::Client:
file: lib/Nagios/NRPE/Client.pm
version: v2.0.6
version: v2.0.7
Nagios::NRPE::Daemon:
file: lib/Nagios/NRPE/Daemon.pm
version: v2.0.6
version: v2.0.7
Nagios::NRPE::Packet:
file: lib/Nagios/NRPE/Packet.pm
version: v2.0.6
version: v2.0.7
Nagios::NRPE::Utils:
file: lib/Nagios/NRPE/Utils.pm
version: v2.0.6
version: v2.0.7
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.6
version: v2.0.7
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.6';
our $VERSION = '2.0.7';

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.6';
our $VERSION = '2.0.7';

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.6';
our $VERSION = '2.0.7';

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.6';
our $VERSION = '2.0.7';

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.6';
our $VERSION = '2.0.7';

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.6';
our $VERSION = '2.0.7';

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.6';
our $VERSION = '2.0.7';
use strict;
use warnings;
require Exporter;
Expand Down

0 comments on commit acb0986

Please sign in to comment.