Skip to content

Commit

Permalink
increment $VERSION after 0.000012 release
Browse files Browse the repository at this point in the history
  • Loading branch information
oalders committed Jun 23, 2021
1 parent 3c0cd10 commit 57ba85a
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 8 deletions.
2 changes: 2 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down
2 changes: 1 addition & 1 deletion lib/App/perlimports.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package App::perlimports;
use strict;
use warnings;

our $VERSION = '0.000012';
our $VERSION = '0.000013';

1;

Expand Down
2 changes: 1 addition & 1 deletion lib/App/perlimports/Annotations.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package App::perlimports::Annotations;

use Moo;

our $VERSION = '0.000012';
our $VERSION = '0.000013';

use Types::Standard qw( ArrayRef Object );

Expand Down
2 changes: 1 addition & 1 deletion lib/App/perlimports/CLI.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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 ();
Expand Down
3 changes: 2 additions & 1 deletion lib/App/perlimports/Document.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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 ();
Expand Down Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion lib/App/perlimports/ExportInspector.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use Moo;

## no critic (TestingAndDebugging::ProhibitNoStrict)

our $VERSION = '0.000012';
our $VERSION = '0.000013';

use Class::Inspector ();
use Class::Unload ();
Expand Down
2 changes: 1 addition & 1 deletion lib/App/perlimports/Include.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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 ();
Expand Down
2 changes: 1 addition & 1 deletion lib/App/perlimports/Role/Logger.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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 );

Expand Down

0 comments on commit 57ba85a

Please sign in to comment.