Skip to content

Commit

Permalink
increment $VERSION after 0.000052 release
Browse files Browse the repository at this point in the history
  • Loading branch information
oalders committed Aug 19, 2023
1 parent b668d5e commit bc2d844
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 10 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.000052 2023-08-19 19:03:55Z
- Allow PPI::Statement::Expression in hash key (GH#102) (José Manuel
Rodríguez D.)
Expand Down
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ my %WriteMakefileArgs = (
"Test::Warnings" => 0,
"lib" => 0
},
"VERSION" => "0.000052",
"VERSION" => "0.000053",
"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.000052';
our $VERSION = '0.000053';

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.000052';
our $VERSION = '0.000053';

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.000052';
our $VERSION = '0.000053';

use App::perlimports ();
use App::perlimports::Config ();
Expand Down
2 changes: 1 addition & 1 deletion lib/App/perlimports/Config.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package App::perlimports::Config;
use Moo;
use MooX::StrictConstructor;

our $VERSION = '0.000052';
our $VERSION = '0.000053';

use List::Util qw( uniq );
use Path::Tiny qw( path );
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.000052';
our $VERSION = '0.000053';

use App::perlimports::Annotations ();
use App::perlimports::ExportInspector ();
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 (Modules::RequireExplicitInclusion, Subroutines::ProhibitCallsToUnexportedSubs, TestingAndDebugging::ProhibitNoStrict)

our $VERSION = '0.000052';
our $VERSION = '0.000053';

use App::perlimports::Sandbox ();
use Class::Inspector ();
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.000052';
our $VERSION = '0.000053';

use Data::Dumper qw( Dumper );
use List::Util qw( any none uniq );
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.000052';
our $VERSION = '0.000053';

use Types::Standard qw( InstanceOf );

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

our $VERSION = '0.000052';
our $VERSION = '0.000053';

use Data::UUID ();

Expand Down

0 comments on commit bc2d844

Please sign in to comment.