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(-) 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(-) 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 From 2333a1cea474cfbd4d8a8c842597919924ae804f Mon Sep 17 00:00:00 2001 From: Chad Granum Date: Sun, 16 Aug 2020 14:16:56 -0700 Subject: Changes update --- Changes | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Changes b/Changes index a28e9f0..76b3b62 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,7 @@ {{$NEXT}} + - Work with strict on by default + 0.025 2018-02-18 12:42:37-08:00 America/Los_Angeles - Minor cperl fix -- cgit v1.2.3 From 9b7fa0ffbb0284ee1d871739331ffe854689a7f4 Mon Sep 17 00:00:00 2001 From: Chad Granum Date: Sun, 16 Aug 2020 14:24:03 -0700 Subject: v0.026 - Work with strict on by default --- Changes | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Changes b/Changes index 76b3b62..e06a2ab 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,7 @@ {{$NEXT}} +0.026 2020-08-16 14:24:02-07:00 America/Los_Angeles + - Work with strict on by default 0.025 2018-02-18 12:42:37-08:00 America/Los_Angeles -- cgit v1.2.3