release 2.046005

This commit is contained in:
Oliver Gorwits
2020-10-17 14:40:07 +01:00
parent 2b72233738
commit facc41e310
9 changed files with 11 additions and 11 deletions

View File

@@ -1,4 +1,4 @@
2.046004 - 2020-10-17
2.046005 - 2020-10-17
[ENHANCEMENTS]

View File

@@ -128,7 +128,7 @@
"provides" : {
"App::Netdisco" : {
"file" : "lib/App/Netdisco.pm",
"version" : "2.046004"
"version" : "2.046005"
},
"App::Netdisco::AnyEvent::Nbtstat" : {
"file" : "lib/App/Netdisco/AnyEvent/Nbtstat.pm"
@@ -840,6 +840,6 @@
"x_IRC" : "irc://irc.freenode.org/#netdisco",
"x_MailingList" : "https://lists.sourceforge.net/lists/listinfo/netdisco-users"
},
"version" : "2.046004",
"version" : "2.046005",
"x_serialization_backend" : "JSON::PP version 2.97001"
}

View File

@@ -23,7 +23,7 @@ name: App-Netdisco
provides:
App::Netdisco:
file: lib/App/Netdisco.pm
version: '2.046004'
version: '2.046005'
App::Netdisco::AnyEvent::Nbtstat:
file: lib/App/Netdisco/AnyEvent/Nbtstat.pm
App::Netdisco::Backend::Job:
@@ -579,5 +579,5 @@ resources:
homepage: http://netdisco.org/
license: http://opensource.org/licenses/BSD-3-Clause
repository: https://github.com/netdisco/netdisco
version: '2.046004'
version: '2.046005'
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'

View File

@@ -4,7 +4,7 @@ use strict;
use warnings;
use 5.010_000;
our $VERSION = '2.046004';
our $VERSION = '2.046005';
use App::Netdisco::Configuration;
=head1 NAME

View File

@@ -418,7 +418,7 @@ Returns the C<mac> column instantiated into a L<NetAddr::MAC> object.
=cut
sub net_mac { return NetAddr::MAC->new(mac => ((shift)->mac) || '') }
sub net_mac { return NetAddr::MAC->new(mac => ((shift)->mac || '')) }
=head2 last_comment

View File

@@ -193,6 +193,6 @@ Returns the C<mac> column instantiated into a L<NetAddr::MAC> object.
=cut
sub net_mac { return NetAddr::MAC->new(mac => ((shift)->mac) || '') }
sub net_mac { return NetAddr::MAC->new(mac => ((shift)->mac || '')) }
1;

View File

@@ -221,6 +221,6 @@ Returns the C<mac> column instantiated into a L<NetAddr::MAC> object.
=cut
sub net_mac { return NetAddr::MAC->new(mac => ((shift)->mac) || '') }
sub net_mac { return NetAddr::MAC->new(mac => ((shift)->mac || '')) }
1;

View File

@@ -178,6 +178,6 @@ Returns the C<mac> column instantiated into a L<NetAddr::MAC> object.
=cut
sub net_mac { return NetAddr::MAC->new(mac => ((shift)->mac) || '') }
sub net_mac { return NetAddr::MAC->new(mac => ((shift)->mac || '')) }
1;

View File

@@ -87,6 +87,6 @@ Returns the C<mac> column instantiated into a L<NetAddr::MAC> object.
=cut
sub net_mac { return NetAddr::MAC->new(mac => ((shift)->mac) || '') }
sub net_mac { return NetAddr::MAC->new(mac => ((shift)->mac || '')) }
1;