diff --git a/Changes b/Changes index d4efc08d..0ea69eee 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,21 @@ +2.040000 - 2018-12-28 + + [NEW FEATURES] + + * #464 ignore_notpresent_types config to ignore notPresent interfaces (inphobia, nic) + * #469 jobs_qdepth config to set length of job queue in web view (inphobia) + + [ENHANCEMENTS] + + * #459 additional interface type to ignore (inphobia) + * #460 several improvements to netdisco-sshcollector (rc9000) + + [BUG FIXES] + + * #456 fix POD error (manwar) + * #461 provide stdin to sshcollector (rc9000) + * #467 documentation fixes (inphobia) + 2.039033 - 2018-10-19 [BUG FIXES] diff --git a/META.json b/META.json index 21787b8a..ecf94c10 100644 --- a/META.json +++ b/META.json @@ -14,6 +14,13 @@ }, "name" : "App-Netdisco", "prereqs" : { + "build" : { + "requires" : { + "ExtUtils::Config" : "0", + "ExtUtils::Helpers" : "0", + "ExtUtils::InstallPaths" : "0" + } + }, "configure" : { "requires" : { "DBIx::Class" : "0.082810", @@ -110,7 +117,7 @@ "provides" : { "App::Netdisco" : { "file" : "lib/App/Netdisco.pm", - "version" : "2.039033" + "version" : "2.040000" }, "App::Netdisco::AnyEvent::Nbtstat" : { "file" : "lib/App/Netdisco/AnyEvent/Nbtstat.pm" @@ -789,6 +796,6 @@ "x_IRC" : "irc://irc.freenode.org/#netdisco", "x_MailingList" : "https://lists.sourceforge.net/lists/listinfo/netdisco-users" }, - "version" : "2.039033", + "version" : "2.040000", "x_serialization_backend" : "JSON::PP version 2.97001" } diff --git a/META.yml b/META.yml index a0787865..ba8306f9 100644 --- a/META.yml +++ b/META.yml @@ -4,6 +4,9 @@ author: - 'Oliver Gorwits ' build_requires: Env::Path: '0' + ExtUtils::Config: '0' + ExtUtils::Helpers: '0' + ExtUtils::InstallPaths: '0' Test::File::ShareDir::Dist: '0' Test::More: '1.302083' configure_requires: @@ -19,7 +22,7 @@ name: App-Netdisco provides: App::Netdisco: file: lib/App/Netdisco.pm - version: '2.039033' + version: '2.040000' App::Netdisco::AnyEvent::Nbtstat: file: lib/App/Netdisco/AnyEvent/Nbtstat.pm App::Netdisco::Backend::Job: @@ -543,5 +546,5 @@ resources: homepage: http://netdisco.org/ license: http://opensource.org/licenses/bsd-license.php repository: https://github.com/netdisco/netdisco -version: '2.039033' +version: '2.040000' x_serialization_backend: 'CPAN::Meta::YAML version 0.018' diff --git a/lib/App/Netdisco.pm b/lib/App/Netdisco.pm index 2b52e45a..72d74c93 100644 --- a/lib/App/Netdisco.pm +++ b/lib/App/Netdisco.pm @@ -4,7 +4,7 @@ use strict; use warnings; use 5.010_000; -our $VERSION = '2.039033'; +our $VERSION = '2.040000'; use App::Netdisco::Configuration; =head1 NAME