aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changes3
-rw-r--r--Makefile.PL2
-rw-r--r--lib/Config/Parser.pm2
3 files changed, 5 insertions, 2 deletions
diff --git a/Changes b/Changes
index 8447966..c2dfadd 100644
--- a/Changes
+++ b/Changes
@@ -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;

Return to:

Send suggestions and report system problems to the System administrator.