diff --git a/.gitignore b/.gitignore index b0667df..788d0df 100644 --- a/.gitignore +++ b/.gitignore @@ -46,4 +46,4 @@ DEBUG* # Other /stuff -TODO +TODO* diff --git a/lib/XML/Axk.pm b/lib/XML/Axk.pm index d5b0975..9aee97f 100755 --- a/lib/XML/Axk.pm +++ b/lib/XML/Axk.pm @@ -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); diff --git a/lib/XML/Axk/App.pm b/lib/XML/Axk/App.pm index 4d0b69b..97f61c1 100644 --- a/lib/XML/Axk/App.pm +++ b/lib/XML/Axk/App.pm @@ -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); diff --git a/lib/XML/Axk/Base.pm b/lib/XML/Axk/Base.pm index d90779c..5c44785 100755 --- a/lib/XML/Axk/Base.pm +++ b/lib/XML/Axk/Base.pm @@ -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; @@ -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); }; diff --git a/lib/XML/Axk/Core.pm b/lib/XML/Axk/Core.pm index 2ec4aa3..72efc6f 100644 --- a/lib/XML/Axk/Core.pm +++ b/lib/XML/Axk/Core.pm @@ -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 diff --git a/lib/XML/Axk/Object/TinyDefaults.pm b/lib/XML/Axk/Object/TinyDefaults.pm index a2323e2..251c62a 100644 --- a/lib/XML/Axk/Object/TinyDefaults.pm +++ b/lib/XML/Axk/Object/TinyDefaults.pm @@ -11,7 +11,7 @@ use Data::Dumper; use Import::Into; our $ObjTiny; -our $VERSION = '0.001006'; +our $VERSION = '0.001007'; # TRIAL BEGIN { require parent;