Upgrade minimum perl version

Change-Id: Ifc45e6585db24339794fec221f04fb4eb0b291e3
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml
index 7f2fea0..77aca61 100644
--- a/.github/workflows/linux.yml
+++ b/.github/workflows/linux.yml
@@ -12,10 +12,10 @@
     strategy:
       matrix:
         perl-version:
-          - '5.20'
-          - '5.22'
-          - '5.30'
           - '5.32'
+          - '5.34'
+          - '5.36'
+          - '5.38'
     name: Perl ${{ matrix.perl-version }} on Linux
     container:
       image: perl:${{ matrix.perl-version }}
diff --git a/Changes b/Changes
index c489fa7..efd5116 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,7 @@
         - Support ICC meta.
         - Fix date handling for years of length < 2.
         - Improve emoji detection (rebecca).
+        - Upgrade minimum perl version required.
 
 0.50 2023-02-13
         - Fix 'temporary-extract' configuration
diff --git a/Makefile.PL b/Makefile.PL
index 3a90159..899836f 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -1,5 +1,5 @@
 #!/usr/bin/env perl
-use v5.16;
+use v5.32;
 use strict;
 use warnings;
 use ExtUtils::MakeMaker;
@@ -49,7 +49,7 @@
     'List::Util'      => 1.60,
     'Scalar::Util'    => 1.60,
   },
-  MIN_PERL_VERSION => '5.016',
+  MIN_PERL_VERSION => '5.032',
   test => {
     TESTS =>
       't/*.t '.