release 2.035000

This commit is contained in:
Oliver Gorwits
2017-04-19 21:56:33 +01:00
parent 608d1b86b2
commit b23dc2d551
6 changed files with 17 additions and 8 deletions

View File

@@ -1,4 +1,4 @@
2.035000 - 2.035000 - 2017-04-19
[ENHANCEMENTS] [ENHANCEMENTS]

View File

@@ -159,6 +159,7 @@ lib/App/Netdisco/SSHCollector/Platform/GAIAEmbedded.pm
lib/App/Netdisco/SSHCollector/Platform/IOS.pm lib/App/Netdisco/SSHCollector/Platform/IOS.pm
lib/App/Netdisco/SSHCollector/Platform/IOSXR.pm lib/App/Netdisco/SSHCollector/Platform/IOSXR.pm
lib/App/Netdisco/SSHCollector/Platform/Linux.pm lib/App/Netdisco/SSHCollector/Platform/Linux.pm
lib/App/Netdisco/SSHCollector/Platform/NXOS.pm
lib/App/Netdisco/SSHCollector/Platform/PaloAlto.pm lib/App/Netdisco/SSHCollector/Platform/PaloAlto.pm
lib/App/Netdisco/Util/Daemon.pm lib/App/Netdisco/Util/Daemon.pm
lib/App/Netdisco/Util/Device.pm lib/App/Netdisco/Util/Device.pm
@@ -235,6 +236,8 @@ lib/App/Netdisco/Web/TypeAhead.pm
lib/Dancer/Template/NetdiscoTemplateToolkit.pm lib/Dancer/Template/NetdiscoTemplateToolkit.pm
LICENCE LICENCE
MANIFEST This list of files MANIFEST This list of files
META.json
META.yml
share/config.yml share/config.yml
share/environments/deployment.yml share/environments/deployment.yml
share/public/500.html share/public/500.html
@@ -419,5 +422,3 @@ t/11-portsort.t
t/html/portsort.html t/html/portsort.html
t/js/qunit-tap.js t/js/qunit-tap.js
t/js/run_qunit.js t/js/run_qunit.js
META.yml
META.json

View File

@@ -70,3 +70,6 @@ logs/.*
^MYMETA\. ^MYMETA\.
#!end included /home/oliver/perl-profiles/dancer/lib/perl5/ExtUtils/MANIFEST.SKIP #!end included /home/oliver/perl-profiles/dancer/lib/perl5/ExtUtils/MANIFEST.SKIP
.github
.travis
README.md

View File

@@ -98,7 +98,7 @@
"provides" : { "provides" : {
"App::Netdisco" : { "App::Netdisco" : {
"file" : "lib/App/Netdisco.pm", "file" : "lib/App/Netdisco.pm",
"version" : "2.034003" "version" : "2.035000"
}, },
"App::Netdisco::AnyEvent::Nbtstat" : { "App::Netdisco::AnyEvent::Nbtstat" : {
"file" : "lib/App/Netdisco/AnyEvent/Nbtstat.pm" "file" : "lib/App/Netdisco/AnyEvent/Nbtstat.pm"
@@ -394,6 +394,9 @@
"App::Netdisco::SSHCollector::Platform::Linux" : { "App::Netdisco::SSHCollector::Platform::Linux" : {
"file" : "lib/App/Netdisco/SSHCollector/Platform/Linux.pm" "file" : "lib/App/Netdisco/SSHCollector/Platform/Linux.pm"
}, },
"App::Netdisco::SSHCollector::Platform::NXOS" : {
"file" : "lib/App/Netdisco/SSHCollector/Platform/NXOS.pm"
},
"App::Netdisco::SSHCollector::Platform::PaloAlto" : { "App::Netdisco::SSHCollector::Platform::PaloAlto" : {
"file" : "lib/App/Netdisco/SSHCollector/Platform/PaloAlto.pm" "file" : "lib/App/Netdisco/SSHCollector/Platform/PaloAlto.pm"
}, },
@@ -632,5 +635,5 @@
"x_IRC" : "irc://irc.freenode.org/#netdisco", "x_IRC" : "irc://irc.freenode.org/#netdisco",
"x_MailingList" : "https://lists.sourceforge.net/lists/listinfo/netdisco-users" "x_MailingList" : "https://lists.sourceforge.net/lists/listinfo/netdisco-users"
}, },
"version" : "2.034003" "version" : "2.035000"
} }

View File

@@ -18,7 +18,7 @@ name: App-Netdisco
provides: provides:
App::Netdisco: App::Netdisco:
file: lib/App/Netdisco.pm file: lib/App/Netdisco.pm
version: '2.034003' version: '2.035000'
App::Netdisco::AnyEvent::Nbtstat: App::Netdisco::AnyEvent::Nbtstat:
file: lib/App/Netdisco/AnyEvent/Nbtstat.pm file: lib/App/Netdisco/AnyEvent/Nbtstat.pm
App::Netdisco::Configuration: App::Netdisco::Configuration:
@@ -215,6 +215,8 @@ provides:
file: lib/App/Netdisco/SSHCollector/Platform/IOSXR.pm file: lib/App/Netdisco/SSHCollector/Platform/IOSXR.pm
App::Netdisco::SSHCollector::Platform::Linux: App::Netdisco::SSHCollector::Platform::Linux:
file: lib/App/Netdisco/SSHCollector/Platform/Linux.pm file: lib/App/Netdisco/SSHCollector/Platform/Linux.pm
App::Netdisco::SSHCollector::Platform::NXOS:
file: lib/App/Netdisco/SSHCollector/Platform/NXOS.pm
App::Netdisco::SSHCollector::Platform::PaloAlto: App::Netdisco::SSHCollector::Platform::PaloAlto:
file: lib/App/Netdisco/SSHCollector/Platform/PaloAlto.pm file: lib/App/Netdisco/SSHCollector/Platform/PaloAlto.pm
App::Netdisco::Util::DNS: App::Netdisco::Util::DNS:
@@ -434,4 +436,4 @@ resources:
homepage: http://netdisco.org/ homepage: http://netdisco.org/
license: http://opensource.org/licenses/bsd-license.php license: http://opensource.org/licenses/bsd-license.php
repository: https://github.com/netdisco/netdisco repository: https://github.com/netdisco/netdisco
version: '2.034003' version: '2.035000'

View File

@@ -4,7 +4,7 @@ use strict;
use warnings; use warnings;
use 5.010_000; use 5.010_000;
our $VERSION = '2.034003'; our $VERSION = '2.035000';
use App::Netdisco::Configuration; use App::Netdisco::Configuration;
use Module::Find (); use Module::Find ();