Skip to content

Commit edfa125

Browse files
committed
Fixes per cpantesters results
Removed copy-and-paste-error reference to Data::Hopen
1 parent bfeb5aa commit edfa125

File tree

6 files changed

+8
-9
lines changed

6 files changed

+8
-9
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,4 @@ DEBUG*
4646

4747
# Other
4848
/stuff
49-
TODO
49+
TODO*

lib/XML/Axk.pm

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,9 @@
33
package XML::Axk;
44
use strict;
55
use warnings;
6-
use Data::Hopen;
7-
use Data::Hopen::Base;
6+
use XML::Axk::Base;
87

9-
our $VERSION = '0.001006';
8+
our $VERSION = '0.001007'; # TRIAL
109

1110
#use parent 'Exporter';
1211
#our (@EXPORT, @EXPORT_OK, %EXPORT_TAGS);

lib/XML/Axk/App.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use XML::Axk::Core;
88
# Semantic versioning, packed per Perl rules. Must always be at least one
99
# digit left of the decimal, and six digits right of the decimal. For
1010
# prerelease versions, put an underscore before the last three digits.
11-
our $VERSION = '0.001006';
11+
our $VERSION = '0.001007'; # TRIAL
1212

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

lib/XML/Axk/Base.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use Import::Into;
88

99
# Pragmas
1010
use 5.020;
11-
use feature ":5.18"; # Use expressly so we can re-export it below
11+
use feature ":5.20"; # Use expressly so we can re-export it below
1212
use strict;
1313
use warnings;
1414

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

5151
# Re-export pragmas
52-
feature->import::into($target, qw(:5.18));
52+
feature->import::into($target, qw(:5.20));
5353
foreach my $pragma (qw(strict warnings)) {
5454
${pragma}->import::into($target);
5555
};

lib/XML/Axk/Core.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use XML::Axk::Base qw(:all);
1111
use XML::Axk::Preparse;
1212
use Data::Dumper;
1313

14-
our $VERSION = '0.001006';
14+
our $VERSION = '0.001007'; # TRIAL
1515

1616
=encoding UTF-8
1717

lib/XML/Axk/Object/TinyDefaults.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use Data::Dumper;
1111
use Import::Into;
1212

1313
our $ObjTiny;
14-
our $VERSION = '0.001006';
14+
our $VERSION = '0.001007'; # TRIAL
1515

1616
BEGIN {
1717
require parent;

0 commit comments

Comments
 (0)