From: Charles McGarvey Date: Tue, 3 May 2022 23:15:54 +0000 (-0600) Subject: Declare perl 5.10.0 prereq X-Git-Tag: v0.902~3 X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fp5-File-KDBX;a=commitdiff_plain;h=afae2e268e27694e7d64721dd974d22ed3efae9b Declare perl 5.10.0 prereq --- diff --git a/lib/File/KDBX.pm b/lib/File/KDBX.pm index 6f5c7dc..d62b5ea 100644 --- a/lib/File/KDBX.pm +++ b/lib/File/KDBX.pm @@ -1,6 +1,7 @@ package File::KDBX; # ABSTRACT: Encrypted database to store secret text and files +use 5.010; use warnings; use strict; diff --git a/lib/File/KDBX/Constants.pm b/lib/File/KDBX/Constants.pm index ba3baf3..c5c9a05 100644 --- a/lib/File/KDBX/Constants.pm +++ b/lib/File/KDBX/Constants.pm @@ -6,6 +6,7 @@ package File::KDBX::Constants; # 2. List it in the pod at the bottom of this file in the section corresponding to its tag. # 3. There is no step three. +use 5.010; use warnings; use strict; diff --git a/lib/File/KDBX/Error.pm b/lib/File/KDBX/Error.pm index d4a01b9..4aee5fe 100644 --- a/lib/File/KDBX/Error.pm +++ b/lib/File/KDBX/Error.pm @@ -1,6 +1,7 @@ package File::KDBX::Error; # ABSTRACT: Represents something bad that happened +use 5.010; use warnings; use strict; diff --git a/lib/File/KDBX/Util.pm b/lib/File/KDBX/Util.pm index 84cb363..e9bb316 100644 --- a/lib/File/KDBX/Util.pm +++ b/lib/File/KDBX/Util.pm @@ -1,6 +1,7 @@ package File::KDBX::Util; # ABSTRACT: Utility functions for working with KDBX files +use 5.010; use warnings; use strict;