summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgregor herrmann <gregoa@debian.org>2020-07-10 19:32:19 +0200
committergregor herrmann <gregoa@debian.org>2020-07-10 19:32:19 +0200
commit808b2cae496209e6822d751f5141daeb3c3587dc (patch)
tree172a92cb92bd0fc9865aa269d7325fd66d32dd98
parent83159deddd08719406022971f781f9baaa1e16ea (diff)
parent065a7c91dfd282fd7f4ba794e80f42ecb3ff2ac7 (diff)
New upstream version 1.54
-rw-r--r--CHANGES9
-rw-r--r--META.yml10
-rw-r--r--lib/Config/File.pm12
3 files changed, 22 insertions, 9 deletions
diff --git a/CHANGES b/CHANGES
index b6d91c6..a66e5c1 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,10 @@
-UNRELEASED
-1.52 (15-Nov-2018):
+1.54 (8-Jun-2020):
+ - No code changes - just updated META and information
+
+1.53 (8-Jun-2020):
+ - No changes - just another release for CPAN
+
+1.52 (22-May-2020):
- Less problematic build CPAN RT#132165
1.51 (15-Nov-2018):
diff --git a/META.yml b/META.yml
index 670923c..da1fa62 100644
--- a/META.yml
+++ b/META.yml
@@ -1,12 +1,18 @@
---
name: Config-File
-version: 1.52
+version: 1.54
author:
- 'Gunnar Wolf <gwolf@gwolf.org>'
+ - 'Sebastien J. Gross <seb@sjgross.org>'
+ - 'Mikael Nordin <mikael.nordin@su.se>'
+ - 'Johan Wassberg <jocar@su.se>'
abstract: Parse a simple configuration file
license: gpl
resources:
+ bugtracker: https://github.com/stockholmuniversity/Config-File/issues
license: http://opensource.org/licenses/gpl-license.php
+ homepage: https://github.com/stockholmuniversity/Config-File
+
build_requires:
Module::Build: 0
Test::Pod: 0
@@ -14,7 +20,7 @@ build_requires:
provides:
Config::File:
file: lib/Config/File.pm
- version: 1.52
+ version: 1.54
generated_by: Module::Build version 0.280801
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.2.html
diff --git a/lib/Config/File.pm b/lib/Config/File.pm
index c8a0835..c96357f 100644
--- a/lib/Config/File.pm
+++ b/lib/Config/File.pm
@@ -8,7 +8,7 @@ use IO::File;
use vars qw($VERSION @ISA @EXPORT_OK);
@ISA = qw/Exporter/;
@EXPORT_OK = qw/read_config_file/;
-$VERSION = '1.52';
+$VERSION = '1.54';
sub read_config_file($) {
my ( $conf, $file, $fh, $line_num );
@@ -161,17 +161,19 @@ deprecated (and will thus issue a warning). Please update your code!
=head1 AUTHOR
-Development was started by Sebastien J. Gross <seb@sjgross.org>, and since
-2003 it is maintained by Gunnar Wolf <gwolf@gwolf.org>.
+Development was started by Sebastien J. Gross <seb@sjgross.org>. Maintained by
+Gunnar Wolf <gwolf@gwolf.org> until 2018 when Stockholm University (Johan
+Wassberg and Mikael Nordin) took over maintainance.
All rights reserved. This program is free software; you can redistribute
it and/or modify it under the terms of the GPL.
=head1 VERSION
-Version 1.52
+Version 1.54
Copyright (c) 2002 Sebastien J. Gross. All rights reserved.
-Copyright (c) 2003-2009 Gunnar Wolf. All rights reserved.
+Copyright (c) 2003-2018 Gunnar Wolf. All rights reserved.
+Copyright (c) 2018- Stockholm University. All rights reserved.
This program is free software; you can redistribute it and/or modify
it under the terms of the GPL v2 (or later, at your choice).