From 2da84e5da84fbc27540ec8e97fbea3c37991841b Mon Sep 17 00:00:00 2001 From: Chad Granum Date: Sun, 18 Feb 2018 12:42:39 -0800 Subject: Automated Version Bump --- lib/Importer.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/Importer.pm') diff --git a/lib/Importer.pm b/lib/Importer.pm index c07ec46..e07ed22 100644 --- a/lib/Importer.pm +++ b/lib/Importer.pm @@ -2,7 +2,7 @@ package Importer; use strict qw/vars subs/; # Not refs! use warnings; no warnings 'once'; -our $VERSION = '0.025'; +our $VERSION = '0.026'; my %SIG_TO_SLOT = ( '&' => 'CODE', -- cgit v1.2.3 From 183abbcde93faa76f2ca0864436b634a5a7362a1 Mon Sep 17 00:00:00 2001 From: Todd Rinaldo Date: Sat, 8 Aug 2020 22:14:13 -0500 Subject: Explicitly turn off strict refs for Importer This better addresses a possible future change in defaults --- lib/Importer.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/Importer.pm') diff --git a/lib/Importer.pm b/lib/Importer.pm index e07ed22..f10aada 100644 --- a/lib/Importer.pm +++ b/lib/Importer.pm @@ -1,5 +1,5 @@ package Importer; -use strict qw/vars subs/; # Not refs! +use strict; no strict 'refs'; use warnings; no warnings 'once'; our $VERSION = '0.026'; -- cgit v1.2.3