From 57ba85a951203bf51216feffc67eec58b797feac Mon Sep 17 00:00:00 2001 From: Olaf Alders Date: Wed, 23 Jun 2021 15:23:36 -0400 Subject: [PATCH] increment $VERSION after 0.000012 release --- Changes | 2 ++ Makefile.PL | 2 +- lib/App/perlimports.pm | 2 +- lib/App/perlimports/Annotations.pm | 2 +- lib/App/perlimports/CLI.pm | 2 +- lib/App/perlimports/Document.pm | 3 ++- lib/App/perlimports/ExportInspector.pm | 2 +- lib/App/perlimports/Include.pm | 2 +- lib/App/perlimports/Role/Logger.pm | 2 +- 9 files changed, 11 insertions(+), 8 deletions(-) diff --git a/Changes b/Changes index cce2f40..b9586c7 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,7 @@ Revision history for App-perlimports +{{$NEXT}} + 0.000012 2021-06-23 17:52:22Z - Fix a warning that was being triggered by the logger diff --git a/Makefile.PL b/Makefile.PL index 7d53e16..056683f 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -70,7 +70,7 @@ my %WriteMakefileArgs = ( "Test::Warnings" => 0, "lib" => 0 }, - "VERSION" => "0.000012", + "VERSION" => "0.000013", "test" => { "TESTS" => "t/*.t t/ExportInspector/*.t t/cpan-modules/*.t" } diff --git a/lib/App/perlimports.pm b/lib/App/perlimports.pm index d841f36..6925a53 100644 --- a/lib/App/perlimports.pm +++ b/lib/App/perlimports.pm @@ -3,7 +3,7 @@ package App::perlimports; use strict; use warnings; -our $VERSION = '0.000012'; +our $VERSION = '0.000013'; 1; diff --git a/lib/App/perlimports/Annotations.pm b/lib/App/perlimports/Annotations.pm index ee8b09a..904bd37 100755 --- a/lib/App/perlimports/Annotations.pm +++ b/lib/App/perlimports/Annotations.pm @@ -4,7 +4,7 @@ package App::perlimports::Annotations; use Moo; -our $VERSION = '0.000012'; +our $VERSION = '0.000013'; use Types::Standard qw( ArrayRef Object ); diff --git a/lib/App/perlimports/CLI.pm b/lib/App/perlimports/CLI.pm index 4a81fdd..cb743f9 100644 --- a/lib/App/perlimports/CLI.pm +++ b/lib/App/perlimports/CLI.pm @@ -3,7 +3,7 @@ package App::perlimports::CLI; use Moo; use utf8; -our $VERSION = '0.000012'; +our $VERSION = '0.000013'; use App::perlimports (); use App::perlimports::Document (); diff --git a/lib/App/perlimports/Document.pm b/lib/App/perlimports/Document.pm index 7574467..c6c33c5 100644 --- a/lib/App/perlimports/Document.pm +++ b/lib/App/perlimports/Document.pm @@ -3,7 +3,7 @@ package App::perlimports::Document; use Moo; use utf8; -our $VERSION = '0.000012'; +our $VERSION = '0.000013'; use App::perlimports::Annotations (); use App::perlimports::Include (); @@ -237,6 +237,7 @@ my %default_ignore = ( 'Feature::Compat::Try' => 1, 'HTTP::Message::PSGI' => 1, # HTTP::Request::(to|from)_psgi 'Mojo::Base' => 1, + 'Mojo::Date' => 1, 'Mojolicious::Lite' => 1, 'Moo' => 1, 'Moo::Role' => 1, diff --git a/lib/App/perlimports/ExportInspector.pm b/lib/App/perlimports/ExportInspector.pm index 99bc936..81c8569 100644 --- a/lib/App/perlimports/ExportInspector.pm +++ b/lib/App/perlimports/ExportInspector.pm @@ -4,7 +4,7 @@ use Moo; ## no critic (TestingAndDebugging::ProhibitNoStrict) -our $VERSION = '0.000012'; +our $VERSION = '0.000013'; use Class::Inspector (); use Class::Unload (); diff --git a/lib/App/perlimports/Include.pm b/lib/App/perlimports/Include.pm index d13a021..2215d86 100644 --- a/lib/App/perlimports/Include.pm +++ b/lib/App/perlimports/Include.pm @@ -2,7 +2,7 @@ package App::perlimports::Include; use Moo; -our $VERSION = '0.000012'; +our $VERSION = '0.000013'; use App::perlimports::ExportInspector (); use Class::Inspector (); diff --git a/lib/App/perlimports/Role/Logger.pm b/lib/App/perlimports/Role/Logger.pm index 0f20288..3610b3b 100644 --- a/lib/App/perlimports/Role/Logger.pm +++ b/lib/App/perlimports/Role/Logger.pm @@ -2,7 +2,7 @@ package App::perlimports::Role::Logger; use Moo::Role; -our $VERSION = '0.000012'; +our $VERSION = '0.000013'; use Types::Standard qw( InstanceOf );