aboutsummaryrefslogtreecommitdiffstats
path: root/perl/Git.pm
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2023-12-09 16:37:51 -0800
committerJunio C Hamano <gitster@pobox.com>2023-12-09 16:37:51 -0800
commit1ef1cce9c254d3787586ac87c1d1a2ca2c00bfd3 (patch)
treee1267cc212d491841a165f78512e52d58dfab223 /perl/Git.pm
parentMerge branch 'ak/rebase-autosquash' (diff)
parentsend-email: avoid duplicate specification warnings (diff)
downloadgit-1ef1cce9c254d3787586ac87c1d1a2ca2c00bfd3.tar.gz
git-1ef1cce9c254d3787586ac87c1d1a2ca2c00bfd3.zip
Merge branch 'tz/send-email-negatable-options'
Newer versions of Getopt::Long started giving warnings against our (ab)use of it in "git send-email". Bump the minimum version requirement for Perl to 5.8.1 (from September 2002) to allow simplifying our implementation. * tz/send-email-negatable-options: send-email: avoid duplicate specification warnings perl: bump the required Perl version to 5.8.1 from 5.8.0
Diffstat (limited to 'perl/Git.pm')
-rw-r--r--perl/Git.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl/Git.pm b/perl/Git.pm
index 117765dc73..03bf570bf4 100644
--- a/perl/Git.pm
+++ b/perl/Git.pm
@@ -7,7 +7,7 @@ Git - Perl interface to the Git version control system
package Git;
-use 5.008;
+use 5.008001;
use strict;
use warnings $ENV{GIT_PERL_FATAL_WARNINGS} ? qw(FATAL all) : ();