Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
stevan committed Jan 31, 2018
1 parent 80ecbca commit ccc1f70
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 10 deletions.
3 changes: 3 additions & 0 deletions Changes
@@ -1,5 +1,8 @@
Revision history for Perl extension Directory::Scanner

0.04
- switch to use `parent`, `roles` and `slots` pragmas

0.03 2018-01-29
[!!BREAKING CHANGES!!]
- major re-arrangement of the internals for building
Expand Down
2 changes: 1 addition & 1 deletion dist.ini
Expand Up @@ -4,7 +4,7 @@ license = Perl_5
copyright_holder = Stevan Little
copyright_year = 2017, 2018

version = 0.03
version = 0.04

[@Basic]

Expand Down
2 changes: 1 addition & 1 deletion lib/Directory/Scanner.pm
Expand Up @@ -12,7 +12,7 @@ use Directory::Scanner::API::Stream;
use Directory::Scanner::Stream;
use Directory::Scanner::Stream::Concat;

our $VERSION = '0.03';
our $VERSION = '0.04';
our $AUTHORITY = 'cpan:STEVAN';

## static builder constructors
Expand Down
2 changes: 1 addition & 1 deletion lib/Directory/Scanner/API/Stream.pm
Expand Up @@ -4,7 +4,7 @@ package Directory::Scanner::API::Stream;
use strict;
use warnings;

our $VERSION = '0.03';
our $VERSION = '0.04';
our $AUTHORITY = 'cpan:STEVAN';

sub head;
Expand Down
2 changes: 1 addition & 1 deletion lib/Directory/Scanner/Stream.pm
Expand Up @@ -8,7 +8,7 @@ use Carp ();
use Scalar::Util ();
use Path::Tiny ();

our $VERSION = '0.03';
our $VERSION = '0.04';
our $AUTHORITY = 'cpan:STEVAN';

use constant DEBUG => $ENV{DIR_SCANNER_STREAM_DEBUG} // 0;
Expand Down
2 changes: 1 addition & 1 deletion lib/Directory/Scanner/Stream/Application.pm
Expand Up @@ -7,7 +7,7 @@ use warnings;
use Carp ();
use Scalar::Util ();

our $VERSION = '0.03';
our $VERSION = '0.04';
our $AUTHORITY = 'cpan:STEVAN';

use constant DEBUG => $ENV{DIR_SCANNER_STREAM_APPLICATION_DEBUG} // 0;
Expand Down
2 changes: 1 addition & 1 deletion lib/Directory/Scanner/Stream/Concat.pm
Expand Up @@ -7,7 +7,7 @@ use warnings;
use Carp ();
use Scalar::Util ();

our $VERSION = '0.03';
our $VERSION = '0.04';
our $AUTHORITY = 'cpan:STEVAN';

use constant DEBUG => $ENV{DIR_SCANNER_STREAM_CONCAT_DEBUG} // 0;
Expand Down
2 changes: 1 addition & 1 deletion lib/Directory/Scanner/Stream/Ignoring.pm
Expand Up @@ -7,7 +7,7 @@ use warnings;
use Carp ();
use Scalar::Util ();

our $VERSION = '0.03';
our $VERSION = '0.04';
our $AUTHORITY = 'cpan:STEVAN';

use constant DEBUG => $ENV{DIR_SCANNER_STREAM_IGNORING_DEBUG} // 0;
Expand Down
2 changes: 1 addition & 1 deletion lib/Directory/Scanner/Stream/Matching.pm
Expand Up @@ -7,7 +7,7 @@ use warnings;
use Carp ();
use Scalar::Util ();

our $VERSION = '0.03';
our $VERSION = '0.04';
our $AUTHORITY = 'cpan:STEVAN';

use constant DEBUG => $ENV{DIR_SCANNER_STREAM_MATCHING_DEBUG} // 0;
Expand Down
2 changes: 1 addition & 1 deletion lib/Directory/Scanner/Stream/Recursive.pm
Expand Up @@ -7,7 +7,7 @@ use warnings;
use Carp ();
use Scalar::Util ();

our $VERSION = '0.03';
our $VERSION = '0.04';
our $AUTHORITY = 'cpan:STEVAN';

use constant DEBUG => $ENV{DIR_SCANNER_STREAM_RECURSIVE_DEBUG} // 0;
Expand Down
2 changes: 1 addition & 1 deletion lib/Directory/Scanner/Stream/Transformer.pm
Expand Up @@ -7,7 +7,7 @@ use warnings;
use Carp ();
use Scalar::Util ();

our $VERSION = '0.03';
our $VERSION = '0.04';
our $AUTHORITY = 'cpan:STEVAN';

use constant DEBUG => $ENV{DIR_SCANNER_STREAM_TRANSFORMER_DEBUG} // 0;
Expand Down

0 comments on commit ccc1f70

Please sign in to comment.