aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changes3
-rw-r--r--Makefile.PL4
-rw-r--r--lib/Config/Parser.pm2
3 files changed, 8 insertions, 1 deletions
diff --git a/Changes b/Changes
index 4946431..c99f1ac 100644
--- a/Changes
+++ b/Changes
@@ -1,8 +1,11 @@
Revision history for Perl extension Config::Parser
+1.05 Fri Feb 12 20:42:10 2021
+ - Change bugtracker address.
+
1.04 Thu Aug 29 08:17:52 2019
- use Config::AST 1.05
1.03 Fri Aug 23 14:44:18 2019
- implement the BOOLEAN data type
diff --git a/Makefile.PL b/Makefile.PL
index 13a762d..2979de8 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -23,11 +23,15 @@ WriteMakefile(NAME => 'Config::Parser',
resources => {
repository => {
type => 'git',
url => 'git://git.gnu.org.ua/config-parser.git',
web => 'http://git.gnu.org.ua/cgit/config-parser.git/',
},
+ bugtracker => {
+ web => 'https://puszcza.gnu.org.ua/bugs/?group=config-parser',
+ mailto => 'gray+config-parser@gnu.org.ua'
+ }
},
provides => Module::Metadata->provides(version => '1.4',
dir => 'lib')
}
);
diff --git a/lib/Config/Parser.pm b/lib/Config/Parser.pm
index ee39c2e..66d6ec2 100644
--- a/lib/Config/Parser.pm
+++ b/lib/Config/Parser.pm
@@ -4,13 +4,13 @@ use warnings;
use parent 'Config::AST';
use Carp;
use Cwd qw(abs_path);
use Text::ParseWords;
use mro;
-our $VERSION = "1.04";
+our $VERSION = "1.05";
sub new {
my $class = shift;
local %_ = @_;
my $loaded = 0;

Return to:

Send suggestions and report system problems to the System administrator.