Skip to content

Commit

Permalink
increment $VERSION after 0.000014 release
Browse files Browse the repository at this point in the history
  • Loading branch information
oalders committed Jul 8, 2021
1 parent 884080b commit cccffd4
Show file tree
Hide file tree
Showing 9 changed files with 10 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.000014 2021-07-08 19:47:54Z
- Detect symbols in nested quotes (GH#27) (Olaf Alders)

Expand Down
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ my %WriteMakefileArgs = (
"Test::Warnings" => 0,
"lib" => 0
},
"VERSION" => "0.000014",
"VERSION" => "0.000015",
"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.000014';
our $VERSION = '0.000015';

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.000014';
our $VERSION = '0.000015';

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.000014';
our $VERSION = '0.000015';

use App::perlimports ();
use App::perlimports::Document ();
Expand Down
2 changes: 1 addition & 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.000014';
our $VERSION = '0.000015';

use App::perlimports::Annotations ();
use App::perlimports::Include ();
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.000014';
our $VERSION = '0.000015';

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.000014';
our $VERSION = '0.000015';

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.000014';
our $VERSION = '0.000015';

use Types::Standard qw( InstanceOf );

Expand Down

0 comments on commit cccffd4

Please sign in to comment.