Skip to content

Commit 4ce4369

Browse files
committed
Increase minimum perl version to 5.14
1 parent 9c21224 commit 4ce4369

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ jobs:
99
strategy:
1010
matrix:
1111
perl-version:
12-
- '5.10-buster'
13-
- '5.12-buster'
1412
- '5.14-buster'
1513
- '5.16-buster'
1614
- '5.18-buster'
@@ -21,6 +19,8 @@ jobs:
2119
- '5.28'
2220
- '5.30'
2321
- '5.32'
22+
- '5.34'
23+
- '5.36'
2424
container:
2525
image: perl:${{ matrix.perl-version }}
2626
steps:

Makefile.PL

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
use strict;
66
use warnings;
77

8-
use 5.008;
8+
use 5.014;
99
use ExtUtils::MakeMaker;
1010

1111
use Config;
@@ -72,7 +72,7 @@ my %WriteMakefileArgs = (
7272
},
7373
"DISTNAME" => "Crypt-OpenSSL-SignCSR",
7474
"LICENSE" => "apache",
75-
"MIN_PERL_VERSION" => "5.008",
75+
"MIN_PERL_VERSION" => "5.014",
7676
"NAME" => "Crypt::OpenSSL::SignCSR",
7777
"PREREQ_PM" => {},
7878
"TEST_REQUIRES" => {

dist.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ maintainer = Timothy Legge <timlegge@cpan.org>
1515
-remove = Readme
1616

1717
[Prereqs / RuntimeRequires]
18-
perl = 5.008
18+
perl = 5.014
1919

2020
[Prereqs / TestRequires]
2121
File::Slurper = 0.012

lib/Crypt/OpenSSL/SignCSR.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# ABSTRACT OpenSSL Self Sign a Certificate Signing Request in XS.
22
package Crypt::OpenSSL::SignCSR;
33

4-
use 5.008;
4+
use 5.014;
55
use strict;
66
use warnings;
77

0 commit comments

Comments
 (0)