From: Matt S Trout <mst@shadowcat.co.uk>
Date: Sat, 25 Jul 2015 17:11:04 +0000 (+0000)
Subject: switch to strictures 2
X-Git-Tag: v1.003000~1
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=fb6c15810901f8120ea3042c730cab508ae92359;p=p5sagit%2FPackage-Variant.git

switch to strictures 2
---

diff --git a/Changes b/Changes
index 24dc98d..e813e49 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,6 @@
 Revision history for Package-Variant
 
+  - switch to strictures 2
   - add make_variant_package_name optional method
 
 1.002002 - 2014-08-21
diff --git a/Makefile.PL b/Makefile.PL
index 566e771..a0d0972 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -9,7 +9,7 @@ my %META = (
     }, },
     runtime => { requires => {
       'perl' => '5.006',
-      'strictures' => '1.000000',
+      'strictures' => '2.000000',
       'Carp' => '0',
       'Import::Into' => '1.000000',
       'Module::Runtime' => '0.013',
diff --git a/lib/Package/Variant.pm b/lib/Package/Variant.pm
index 7175ac9..966d5ad 100644
--- a/lib/Package/Variant.pm
+++ b/lib/Package/Variant.pm
@@ -1,6 +1,6 @@
 package Package::Variant;
 
-use strictures 1;
+use strictures 2;
 use Import::Into;
 use Module::Runtime qw(require_module);
 use Carp qw(croak);