X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FPackage%2FVariant.pm;h=3b371d2e049760039148ac727758200a3739e018;hb=2f1d078be2dc2914f11aa66b80604d7abcccc213;hp=966d5adcbf650d7ca0f17828b65f84ea1f1c3bc4;hpb=fb6c15810901f8120ea3042c730cab508ae92359;p=p5sagit%2FPackage-Variant.git diff --git a/lib/Package/Variant.pm b/lib/Package/Variant.pm index 966d5ad..3b371d2 100644 --- a/lib/Package/Variant.pm +++ b/lib/Package/Variant.pm @@ -5,7 +5,7 @@ use Import::Into; use Module::Runtime qw(require_module); use Carp qw(croak); -our $VERSION = '1.003000'; +our $VERSION = '1.003002'; $VERSION = eval $VERSION; @@ -139,7 +139,7 @@ Creation of anonymous variants: # declaring a variable Moo role package My::VariableRole::ObjectAttr; - use strictures 1; + use strictures 2; use Package::Variant # what modules to 'use' importing => ['Moo::Role'], @@ -160,7 +160,7 @@ Creation of anonymous variants: # using the role package My::Class::WithObjectAttr; - use strictures 1; + use strictures 2; use Moo; use My::VariableRole::ObjectAttr; @@ -174,7 +174,7 @@ And the same thing, only with named variants: # declaring a variable Moo role that can be named package My::VariableRole::ObjectAttrNamed; - use strictures 1; + use strictures 2; use Package::Variant importing => ['Moo::Role'], subs => [ qw(has around before after with) ]; use Module::Runtime 'module_notional_filename'; # only if you need protection @@ -201,7 +201,7 @@ And the same thing, only with named variants: # using the role package My::Class::WithObjectAttr; - use strictures 1; + use strictures 2; use Moo; use My::VariableRole::ObjectAttrNamed;