Skip to content

Commit a0160fb

Browse files
committed
Consistem version declaration
1 parent ee28a57 commit a0160fb

File tree

6 files changed

+7
-9
lines changed

6 files changed

+7
-9
lines changed

Makefile.PL

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#!/usr/local/bin/perl -w
22

33
require 5.008006;
4-
54
use strict;
65

76
# Be kind to testers, not verbose
@@ -100,12 +99,12 @@ if (-f ".perlcriticrc" && -s "$ENV{HOME}/.perlcriticrc") {
10099
print $fh join "\n" => "",
101100
"[-Documentation::RequireLinkedURLs]", # L<DBI|http://...] requires 5.12
102101
"[-Modules::ProhibitMultiplePackages]",
103-
"[-Modules::RequireExplicitPackage]", # use 5.8.0
102+
"[-Modules::RequireExplicitPackage]", # use 5.008000
104103
"[-RegularExpressions::ProhibitFixedStringMatches]", # deliberate
105104
"[-Subroutines::ProhibitBuiltinHomonyms]", # connect
106105
"[-Subroutines::ProtectPrivateSubs]",
107106
"[-TooMuchCode::ProhibitDuplicateSub]", # sub private_attribute_info
108-
"[-ValuesAndExpressions::ProhibitVersionStrings]", # use 5.8.0
107+
"[-ValuesAndExpressions::ProhibitVersionStrings]", # use 5.008000
109108
"[-Variables::ProhibitPackageVars]", # our
110109
"";
111110
close $fh;

lib/DBD/Unify.pm

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
# You may distribute under the terms of either the GNU General Public
44
# License or the Artistic License, as specified in the Perl README file.
55

6-
use 5.8.4;
7-
6+
use 5.008004;
87
use strict;
98
use warnings;
109

sandbox/dirkey.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/pro/bin/perl -w
22

3-
use 5.18.2;
3+
use 5.018002;
44
use warnings;
55
use integer;
66

sandbox/dump_sys.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/pro/bin/perl
22

3-
use 5.18.2;
3+
use 5.018002;
44
use warnings;
55

66
use CSV;

sandbox/fld.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/pro/bin/perl
22

3-
use 5.18.2;
3+
use 5.018002;
44
use warnings;
55

66
use Data::Peek;

sandbox/pk.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/pro/bin/perl
22

3-
use 5.18.2;
3+
use 5.018002;
44
use warnings;
55

66
use Data::Peek;

0 commit comments

Comments
 (0)