author | Sergey Poznyakoff <gray@gnu.org.ua> | 2019-08-22 06:50:37 (GMT) |
---|---|---|
committer | Sergey Poznyakoff <gray@gnu.org.ua> | 2019-08-22 06:50:37 (GMT) |
commit | bc23772d39d36c6db358db3fa29703843cab1500 (patch) (side-by-side diff) | |
tree | 42de66e45b06b7c56f3406e1191d6a8ea411f795 | |
parent | 93306e5051340113e365a5f756015962122d3c32 (diff) | |
download | config-parser-bc23772d39d36c6db358db3fa29703843cab1500.tar.gz config-parser-bc23772d39d36c6db358db3fa29703843cab1500.tar.bz2 |
Version 1.02v1.02
-rw-r--r-- | Changes | 3 | ||||
-rw-r--r-- | Makefile.PL | 2 | ||||
-rw-r--r-- | lib/Config/Parser.pm | 2 |
3 files changed, 5 insertions, 2 deletions
@@ -1,5 +1,8 @@ Revision history for Perl extension Config::Parser +1.02 Thu Aug 22 09:47:42 2019 + - use mro to track descendant classes + 1.01 Wed Aug 21 20:41:47 2019 - runs on perl 5.16.1 diff --git a/Makefile.PL b/Makefile.PL index a156cd0..366fee2 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -16,7 +16,7 @@ WriteMakefile(NAME => 'Config::Parser', 'Data::Dumper' => '2.135_06', 'File::Temp' => '0.22', 'Text::Locus' => '1.01', - 'Config::AST' => '1.00' + 'Config::AST' => '1.01' }, META_MERGE => { 'meta-spec' => { version => 2 }, diff --git a/lib/Config/Parser.pm b/lib/Config/Parser.pm index ca2fcce..48c11fd 100644 --- a/lib/Config/Parser.pm +++ b/lib/Config/Parser.pm @@ -7,7 +7,7 @@ use Cwd qw(abs_path); use Text::ParseWords; use mro; -our $VERSION = "1.01"; +our $VERSION = "1.02"; sub new { my $class = shift; |