summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changes3
-rw-r--r--Makefile.PL4
-rw-r--r--lib/Config/AST.pm4
3 files changed, 9 insertions, 2 deletions
diff --git a/Changes b/Changes
index f93195a..085dbd4 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
1Revision history for Perl extension Config::AST 1Revision history for Perl extension Config::AST
2 2
31.07 Fri Feb 12 20:31:53 2021
4 - Change bugtracker address.
5
31.06 Tue Nov 19 20:37:56 2019 61.06 Tue Nov 19 20:37:56 2019
4 - Fix method invocation at the end of direct access chain. 7 - Fix method invocation at the end of direct access chain.
5 8
diff --git a/Makefile.PL b/Makefile.PL
index b26f7ce..81fe692 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -27,6 +27,10 @@ WriteMakefile(NAME => 'Config::AST',
27 url => 'git://git.gnu.org.ua/config-ast.git', 27 url => 'git://git.gnu.org.ua/config-ast.git',
28 web => 'http://git.gnu.org.ua/cgit/config-ast.git/', 28 web => 'http://git.gnu.org.ua/cgit/config-ast.git/',
29 }, 29 },
30 bugtracker => {
31 web => 'https://puszcza.gnu.org.ua/bugs/?group=config-ast',
32 mailto => 'gray+config-ast@gnu.org.ua'
33 }
30 }, 34 },
31 provides => Module::Metadata->provides(version => '1.4', 35 provides => Module::Metadata->provides(version => '1.4',
32 dir => 'lib') 36 dir => 'lib')
diff --git a/lib/Config/AST.pm b/lib/Config/AST.pm
index ed486ed..d93e179 100644
--- a/lib/Config/AST.pm
+++ b/lib/Config/AST.pm
@@ -1,5 +1,5 @@
1# This file is part of Config::AST -*- perl -*- 1# This file is part of Config::AST -*- perl -*-
2# Copyright (C) 2017-2019 Sergey Poznyakoff <gray@gnu.org> 2# Copyright (C) 2017-2021 Sergey Poznyakoff <gray@gnu.org>
3# 3#
4# Config::AST is free software; you can redistribute it and/or modify 4# Config::AST is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by 5# it under the terms of the GNU General Public License as published by
@@ -32,7 +32,7 @@ our @ISA = qw(Exporter);
32our %EXPORT_TAGS = ( 'sort' => [ qw(NO_SORT SORT_NATURAL SORT_PATH) ] ); 32our %EXPORT_TAGS = ( 'sort' => [ qw(NO_SORT SORT_NATURAL SORT_PATH) ] );
33our @EXPORT_OK = qw(NO_SORT SORT_NATURAL SORT_PATH); 33our @EXPORT_OK = qw(NO_SORT SORT_NATURAL SORT_PATH);
34 34
35our $VERSION = "1.06"; 35our $VERSION = "1.07";
36 36
37=head1 NAME 37=head1 NAME
38 38

Return to:

Send suggestions and report system problems to the System administrator.