Skip to content

Commit

Permalink
increment $VERSION after 0.000055 release
Browse files Browse the repository at this point in the history
  • Loading branch information
oalders committed Jul 4, 2024
1 parent fe694bc commit 6708e58
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.000055 2024-07-04 16:16:22Z
- Document that Emacs users can get "perlimports --lint" via Flycheck
(GH#112) (Peter Oliver)
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.000055",
"VERSION" => "0.000056",
"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.000055';
our $VERSION = '0.000056';

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.000055';
our $VERSION = '0.000056';

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.000055';
our $VERSION = '0.000056';

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.000055';
our $VERSION = '0.000056';

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.000055';
our $VERSION = '0.000056';

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.000055';
our $VERSION = '0.000056';

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.000055';
our $VERSION = '0.000056';

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.000055';
our $VERSION = '0.000056';

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.000055';
our $VERSION = '0.000056';

use Data::UUID ();

Expand Down

0 comments on commit 6708e58

Please sign in to comment.