From ad5d0dd28e76ec82a020e3bac702418b9f43850c Mon Sep 17 00:00:00 2001 From: Oliver Gorwits Date: Wed, 28 Jun 2017 16:43:32 +0100 Subject: [PATCH] release 2.036003 --- Changes | 5 +++-- MANIFEST | 2 ++ META.json | 9 ++++++--- META.yml | 8 +++++--- lib/App/Netdisco.pm | 2 +- 5 files changed, 17 insertions(+), 9 deletions(-) diff --git a/Changes b/Changes index 3c3032f3..74a1b7c4 100644 --- a/Changes +++ b/Changes @@ -1,12 +1,13 @@ -2.036003 - TESTING +2.036003 - 2017-06-28 [NEW FEATURES] + * #15 record device and node statistics once a day [BUG FIXES] * #322 cease use of Sys::Proctitle - * queiten PERL_ANYEVENT_HOSTS undef error + * quieten PERL_ANYEVENT_HOSTS undef error 2.036002 - 2017-06-26 diff --git a/MANIFEST b/MANIFEST index 226af800..a207860c 100644 --- a/MANIFEST +++ b/MANIFEST @@ -60,6 +60,7 @@ lib/App/Netdisco/DB/Result/NodeWireless.pm lib/App/Netdisco/DB/Result/Oui.pm lib/App/Netdisco/DB/Result/Process.pm lib/App/Netdisco/DB/Result/Session.pm +lib/App/Netdisco/DB/Result/Statistics.pm lib/App/Netdisco/DB/Result/Subnet.pm lib/App/Netdisco/DB/Result/Topology.pm lib/App/Netdisco/DB/Result/User.pm @@ -314,6 +315,7 @@ share/schema_versions/App-Netdisco-DB-4-5-PostgreSQL.sql share/schema_versions/App-Netdisco-DB-40-41-PostgreSQL.sql share/schema_versions/App-Netdisco-DB-41-42-PostgreSQL.sql share/schema_versions/App-Netdisco-DB-42-43-PostgreSQL.sql +share/schema_versions/App-Netdisco-DB-43-44-PostgreSQL.sql share/schema_versions/App-Netdisco-DB-5-6-PostgreSQL.sql share/schema_versions/App-Netdisco-DB-6-7-PostgreSQL.sql share/schema_versions/App-Netdisco-DB-7-8-PostgreSQL.sql diff --git a/META.json b/META.json index 3063ac00..6cc0c5de 100644 --- a/META.json +++ b/META.json @@ -99,7 +99,7 @@ "provides" : { "App::Netdisco" : { "file" : "lib/App/Netdisco.pm", - "version" : "2.036002" + "version" : "2.036003" }, "App::Netdisco::AnyEvent::Nbtstat" : { "file" : "lib/App/Netdisco/AnyEvent/Nbtstat.pm" @@ -163,7 +163,7 @@ }, "App::Netdisco::DB" : { "file" : "lib/App/Netdisco/DB.pm", - "version" : "43" + "version" : "44" }, "App::Netdisco::DB::ExplicitLocking" : { "file" : "lib/App/Netdisco/DB/ExplicitLocking.pm" @@ -240,6 +240,9 @@ "App::Netdisco::DB::Result::Session" : { "file" : "lib/App/Netdisco/DB/Result/Session.pm" }, + "App::Netdisco::DB::Result::Statistics" : { + "file" : "lib/App/Netdisco/DB/Result/Statistics.pm" + }, "App::Netdisco::DB::Result::Subnet" : { "file" : "lib/App/Netdisco/DB/Result/Subnet.pm" }, @@ -655,6 +658,6 @@ "x_IRC" : "irc://irc.freenode.org/#netdisco", "x_MailingList" : "https://lists.sourceforge.net/lists/listinfo/netdisco-users" }, - "version" : "2.036002", + "version" : "2.036003", "x_serialization_backend" : "JSON::PP version 2.27400" } diff --git a/META.yml b/META.yml index 8b17c5b4..cb674d95 100644 --- a/META.yml +++ b/META.yml @@ -18,7 +18,7 @@ name: App-Netdisco provides: App::Netdisco: file: lib/App/Netdisco.pm - version: '2.036002' + version: '2.036003' App::Netdisco::AnyEvent::Nbtstat: file: lib/App/Netdisco/AnyEvent/Nbtstat.pm App::Netdisco::Backend::Job: @@ -61,7 +61,7 @@ provides: file: lib/App/Netdisco/Core/Nbtstat.pm App::Netdisco::DB: file: lib/App/Netdisco/DB.pm - version: '43' + version: '44' App::Netdisco::DB::ExplicitLocking: file: lib/App/Netdisco/DB/ExplicitLocking.pm App::Netdisco::DB::Result::Admin: @@ -112,6 +112,8 @@ provides: file: lib/App/Netdisco/DB/Result/Process.pm App::Netdisco::DB::Result::Session: file: lib/App/Netdisco/DB/Result/Session.pm + App::Netdisco::DB::Result::Statistics: + file: lib/App/Netdisco/DB/Result/Statistics.pm App::Netdisco::DB::Result::Subnet: file: lib/App/Netdisco/DB/Result/Subnet.pm App::Netdisco::DB::Result::Topology: @@ -450,5 +452,5 @@ resources: homepage: http://netdisco.org/ license: http://opensource.org/licenses/bsd-license.php repository: https://github.com/netdisco/netdisco -version: '2.036002' +version: '2.036003' x_serialization_backend: 'CPAN::Meta::YAML version 0.011' diff --git a/lib/App/Netdisco.pm b/lib/App/Netdisco.pm index 6eae8536..8a513b54 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.036002'; +our $VERSION = '2.036003'; use App::Netdisco::Configuration; use Module::Find ();