Skip to content

Commit

Permalink
Fixes per cpantesters results
Browse files Browse the repository at this point in the history
Removed copy-and-paste-error reference to Data::Hopen
  • Loading branch information
cxw42 committed Feb 16, 2019
1 parent bfeb5aa commit edfa125
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ DEBUG*

# Other
/stuff
TODO
TODO*
5 changes: 2 additions & 3 deletions lib/XML/Axk.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@
package XML::Axk;
use strict;
use warnings;
use Data::Hopen;
use Data::Hopen::Base;
use XML::Axk::Base;

our $VERSION = '0.001006';
our $VERSION = '0.001007'; # TRIAL

#use parent 'Exporter';
#our (@EXPORT, @EXPORT_OK, %EXPORT_TAGS);
Expand Down
2 changes: 1 addition & 1 deletion lib/XML/Axk/App.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use XML::Axk::Core;
# Semantic versioning, packed per Perl rules. Must always be at least one
# digit left of the decimal, and six digits right of the decimal. For
# prerelease versions, put an underscore before the last three digits.
our $VERSION = '0.001006';
our $VERSION = '0.001007'; # TRIAL

use Getopt::Long qw(GetOptionsFromArray :config gnu_getopt);

Expand Down
4 changes: 2 additions & 2 deletions lib/XML/Axk/Base.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use Import::Into;

# Pragmas
use 5.020;
use feature ":5.18"; # Use expressly so we can re-export it below
use feature ":5.20"; # Use expressly so we can re-export it below
use strict;
use warnings;

Expand Down Expand Up @@ -49,7 +49,7 @@ sub import {
XML::Axk::Base->export_to_level(1, @_);

# Re-export pragmas
feature->import::into($target, qw(:5.18));
feature->import::into($target, qw(:5.20));
foreach my $pragma (qw(strict warnings)) {
${pragma}->import::into($target);
};
Expand Down
2 changes: 1 addition & 1 deletion lib/XML/Axk/Core.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use XML::Axk::Base qw(:all);
use XML::Axk::Preparse;
use Data::Dumper;

our $VERSION = '0.001006';
our $VERSION = '0.001007'; # TRIAL

=encoding UTF-8
Expand Down
2 changes: 1 addition & 1 deletion lib/XML/Axk/Object/TinyDefaults.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use Data::Dumper;
use Import::Into;

our $ObjTiny;
our $VERSION = '0.001006';
our $VERSION = '0.001007'; # TRIAL

BEGIN {
require parent;
Expand Down

0 comments on commit edfa125

Please sign in to comment.