Skip to content

Commit 634d02b

Browse files
committed
Lowered Perl version requirements to v5.6.0, as detected by Perl::MininumVersion.
1 parent 87680ea commit 634d02b

6 files changed

Lines changed: 7 additions & 5 deletions

File tree

Build.PL

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Module::Build->new(
1111
'XS.xs' => 'lib/JavaScript/Minifier/XS.xs',
1212
},
1313
'requires' => {
14-
'perl' => '5.8.8',
14+
'perl' => '5.6.0',
1515
},
1616
'build_requires' => {
1717
'Test::More' => 0,

Changes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ Revision history for Perl extension JavaScript::Minifier::XS.
33
0.10 ??
44
- RT #64948; allow builds on older versions of Perl.
55
Thanks to Michael Robinton and Ruslan Zakirov.
6+
- Lowered minimum Perl version to v5.6.0, as detected by
7+
Perl::MinimumVersion.
68

79
0.09 Tue Nov 2 22:12 PDT 2010
810
- Bump required Perl version to 5.8.8; oldest release w/Newxz() available.

META.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
},
2828
"runtime" : {
2929
"requires" : {
30-
"perl" : "v5.8.8"
30+
"perl" : "v5.6.0"
3131
}
3232
}
3333
},

META.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ provides:
1919
file: lib/JavaScript/Minifier/XS.pm
2020
version: '0.10'
2121
requires:
22-
perl: v5.8.8
22+
perl: v5.6.0
2323
resources:
2424
license: http://dev.perl.org/licenses/
2525
version: '0.10'

Makefile.PL

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Note: this file was auto-generated by Module::Build::Compat version 0.4206
2-
require 5.008008;
2+
require 5.006000;
33
use ExtUtils::MakeMaker;
44
WriteMakefile
55
(

lib/JavaScript/Minifier/XS.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package JavaScript::Minifier::XS;
22

3-
use 5.8.8;
3+
use 5.6.0;
44
use strict;
55
use warnings;
66

0 commit comments

Comments
 (0)