From 9130bf477acf32a27f4de9eb493cc43f6ee5ee22 Mon Sep 17 00:00:00 2001 From: "Jason A. Crome" Date: Sun, 30 Jul 2023 21:21:26 -0400 Subject: [PATCH 1/2] Bump minimum version of Perl to 5.14 Moo now has a minimum version of Perl 5.14, and without Moo, we have nothing. --- .github/workflows/ci.yml | 3 +-- cpanfile | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 51fc7f184..eceb70455 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -88,6 +88,7 @@ jobs: perl-version: - '5.32' - "5.30" + - "5.14" # - "5.28" # - "5.26" # - "5.24" @@ -95,8 +96,6 @@ jobs: # - "5.20" # - "5.18" # - "5.16" -# - "5.14" - - "5.12" # Not available? container: image: perl:${{ matrix.perl-version }} diff --git a/cpanfile b/cpanfile index 884bd4450..5f9d99ff7 100644 --- a/cpanfile +++ b/cpanfile @@ -1,4 +1,4 @@ -requires 'perl', 5.012005; +requires 'perl', 5.014000; requires 'Attribute::Handlers'; requires 'Carp'; requires 'Clone'; From bdd6729df57d754632235aeb6b638969f4c019c0 Mon Sep 17 00:00:00 2001 From: "Jason A. Crome" Date: Mon, 31 Jul 2023 21:40:36 -0400 Subject: [PATCH 2/2] reflect changes --- Changes | 1 + 1 file changed, 1 insertion(+) diff --git a/Changes b/Changes index 6b8a75942..620bee261 100644 --- a/Changes +++ b/Changes @@ -6,6 +6,7 @@ A. Crome) [ ENHANCEMENTS ] + * PR #1682: Bump minimum version of Perl to 5.14 (Jason A. Crome) [ DOCUMENTATION ] * GH #1669: Show correct usage of Dancer2::Core::Error (GeekRuthie)