aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2019-08-22 09:50:37 +0300
committerSergey Poznyakoff <gray@gnu.org.ua>2019-08-22 09:50:37 +0300
commitbc23772d39d36c6db358db3fa29703843cab1500 (patch)
tree42de66e45b06b7c56f3406e1191d6a8ea411f795
parent93306e5051340113e365a5f756015962122d3c32 (diff)
downloadconfig-parser-bc23772d39d36c6db358db3fa29703843cab1500.tar.gz
config-parser-bc23772d39d36c6db358db3fa29703843cab1500.tar.bz2
Version 1.02v1.02
-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 @@
1Revision history for Perl extension Config::Parser 1Revision history for Perl extension Config::Parser
2 2
31.02 Thu Aug 22 09:47:42 2019
4 - use mro to track descendant classes
5
31.01 Wed Aug 21 20:41:47 2019 61.01 Wed Aug 21 20:41:47 2019
4 - runs on perl 5.16.1 7 - runs on perl 5.16.1
5 8
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',
16 'Data::Dumper' => '2.135_06', 16 'Data::Dumper' => '2.135_06',
17 'File::Temp' => '0.22', 17 'File::Temp' => '0.22',
18 'Text::Locus' => '1.01', 18 'Text::Locus' => '1.01',
19 'Config::AST' => '1.00' 19 'Config::AST' => '1.01'
20 }, 20 },
21 META_MERGE => { 21 META_MERGE => {
22 'meta-spec' => { version => 2 }, 22 '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);
7use Text::ParseWords; 7use Text::ParseWords;
8use mro; 8use mro;
9 9
10our $VERSION = "1.01"; 10our $VERSION = "1.02";
11 11
12sub new { 12sub new {
13 my $class = shift; 13 my $class = shift;

Return to:

Send suggestions and report system problems to the System administrator.