aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2016-10-03 22:45:51 +0300
committerSergey Poznyakoff <gray@gnu.org>2016-10-03 22:45:51 +0300
commit9e9d16d23062d3aa04745df6b47feacd9ee685c2 (patch)
tree8692822e2dfbe4e64a793c00e37171bfa83c9f69
parentfad3ed4a4a35c9d4da6cad0a61afc9f067bd274f (diff)
downloadregexp-opt-9e9d16d23062d3aa04745df6b47feacd9ee685c2.tar.gz
regexp-opt-9e9d16d23062d3aa04745df6b47feacd9ee685c2.tar.bz2
Minor fixes
* Changes: Update. * Makefile.PL: Add provides META_MERGE keyword * lib/List/Regexp.pm: Version 1.3
-rw-r--r--Changes4
-rw-r--r--Makefile.PL7
-rw-r--r--lib/List/Regexp.pm10
3 files changed, 18 insertions, 3 deletions
diff --git a/Changes b/Changes
index a494fb9..4d251cf 100644
--- a/Changes
+++ b/Changes
@@ -1,3 +1,7 @@
+1.03 2016-10-03
+
+* Minor fixes
+
1.02 2016-10-03
* Fix the list of escapable characters.
diff --git a/Makefile.PL b/Makefile.PL
index c516796..df97e4e 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -16,6 +16,7 @@
use strict;
use ExtUtils::MakeMaker;
+use Module::Metadata;
WriteMakefile(NAME => 'List::Regexp',
VERSION_FROM => 'lib/List/Regexp.pm',
@@ -23,7 +24,7 @@ WriteMakefile(NAME => 'List::Regexp',
LICENSE => 'gpl_3',
ABSTRACT => 'Construct a regexp to match any string from the string list',
EXE_FILES => [ 'regexp-opt' ],
- MIN_PERL_VERSION => '5.006',
+ MIN_PERL_VERSION => 5.006,
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
@@ -32,6 +33,8 @@ WriteMakefile(NAME => 'List::Regexp',
url => 'git://git.gnu.org.ua/regexp-opt.git',
web => 'http://git.gnu.org.ua/cgit/regexp-opt.git/',
},
- }
+ },
+ provides => Module::Metadata->provides(version => '1.4',
+ dir => 'lib')
}
);
diff --git a/lib/List/Regexp.pm b/lib/List/Regexp.pm
index 5a0e568..bf8e96a 100644
--- a/lib/List/Regexp.pm
+++ b/lib/List/Regexp.pm
@@ -27,7 +27,7 @@ our @ISA = qw(Exporter);
our %EXPORT_TAGS = ( 'all' => [ qw(regexp_opt) ] );
our @EXPORT_OK = ( qw(regexp_opt) );
our @EXPORT = qw(regexp_opt);
-our $VERSION = "1.02";
+our $VERSION = "1.03";
# Synopsis:
# my @res = find_prefix(AREF)
@@ -389,6 +389,14 @@ If B<1>, enable debugging output.
If B<1>, enclose entire regexp in a group.
=back
+
+=head1 LICENSE
+
+GPLv3+: GNU GPL version 3 or later, see
+<http://gnu.org/licenses/gpl.html>
+
+This is free software: you are free to change and redistribute it.
+There is NO WARRANTY, to the extent permitted by law.
=head1 AUTHORS

Return to:

Send suggestions and report system problems to the System administrator.