From f0cc7464983eb204d2e5b15f51fd20ddca505c3f Mon Sep 17 00:00:00 2001 From: Graham Knop Date: Sat, 2 Nov 2024 17:06:44 +0100 Subject: [PATCH 1/3] add new version_callback facility to Moose::Exporter If given a version_callback argument, Moose::Exporter will also produce (or install) a VERSION method which will perform the core version check but also call an arbitrary callback. --- lib/Moose/Exporter.pm | 59 ++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 56 insertions(+), 3 deletions(-) diff --git a/lib/Moose/Exporter.pm b/lib/Moose/Exporter.pm index e4182b57f..b16167b62 100644 --- a/lib/Moose/Exporter.pm +++ b/lib/Moose/Exporter.pm @@ -8,12 +8,19 @@ use Class::Load qw(is_class_loaded); use Class::MOP; use List::Util 1.45 qw( uniq ); use Moose::Util::MetaRole; -use Scalar::Util 1.40 qw(reftype); +use Scalar::Util 1.40 qw(reftype refaddr); use Sub::Exporter 0.980; use Sub::Util 1.40 qw(set_subname); +use Try::Tiny; use Moose::Util 'throw_exception'; +use constant { + # goto &UNIVERSAL::VERSION usually works on 5.8, but fails on some ARM + # machines. Seems to always work on 5.10 though. + _CAN_GOTO_VERSION => "$]" >= 5.010000, +}; + my %EXPORT_SPEC; sub setup_import_methods { @@ -23,7 +30,7 @@ sub setup_import_methods { $class->build_import_methods( %args, - install => [qw(import unimport init_meta)] + install => [qw(import unimport init_meta VERSION)] ); } @@ -81,6 +88,12 @@ sub build_import_methods { $meta_lookup, ); + $methods{VERSION} = $class->_make_version_sub( + $exporting_package, + \%args, + $meta_lookup, + ); + my $package = Class::MOP::Package->initialize($exporting_package); for my $to_install ( @{ $args{install} || [] } ) { my $symbol = '&' . $to_install; @@ -95,7 +108,7 @@ sub build_import_methods { ); } - return ( $methods{import}, $methods{unimport}, $methods{init_meta} ); + return ( $methods{import}, $methods{unimport}, $methods{init_meta}, $methods{VERSION} ); } sub _make_exporter { @@ -731,6 +744,46 @@ sub _remove_keywords { } } +sub _make_version_sub { + shift; + my $exporting_package = shift; + my $args = shift; + my $meta_lookup = shift; + + my $spec = $EXPORT_SPEC{$exporting_package}; + my $version_cb = $spec->{version_callback} + or return undef; + my $parent_version = $exporting_package->can('VERSION'); + my $is_universal = refaddr($parent_version) == refaddr(\&UNIVERSAL::VERSION); + + return sub { + my ($class, @args) = @_; + my ($caller, $call_file, $call_line) = _get_caller(@_); + if ($class eq $exporting_package && defined $args[0] && try { $class->$parent_version(@args); 1} ) { + $class->$version_cb(@args); + } + if (_CAN_GOTO_VERSION || !$is_universal ) { + goto &$parent_version; + } + else { + my $return; + try { + $class->$parent_version(@args); + } + catch { + my $e = $@; + die $e + if length ref $e; + my $oldloc = sprintf ' at %s line %d.', __FILE__, __LINE__ - 4; + my $newloc = sprintf ' at %s line %d.', $call_file, $call_line; + $e =~ s{\Q$oldloc\E\n.*}{$newloc\n}s; + die $e; + }; + return $return; + } + }; +} + # maintain this for now for backcompat # make sure to return a sub to install in the same circumstances as previously # but this functionality now happens at the end of ->import From c3f18a6664954836c9aa270e892108c49b612b54 Mon Sep 17 00:00:00 2001 From: Graham Knop Date: Sat, 2 Nov 2024 17:09:34 +0100 Subject: [PATCH 2/3] make "use Moose 3;" skip enabling strict Using the version_callback feature, skip enabling strict and warnings if Moose version 3 is requested. Any other module that uses Moose::Exporter will continue to enable strict and warnings, as they are outside Moose and don't follow its versioning. --- lib/Moose.pm | 6 ++++++ lib/Moose/Exporter.pm | 21 +++++++++++++++++++-- lib/Moose/Role.pm | 6 ++++++ lib/Moose/Util/TypeConstraints.pm | 6 ++++++ 4 files changed, 37 insertions(+), 2 deletions(-) diff --git a/lib/Moose.pm b/lib/Moose.pm index f4fa9befc..2493da46d 100644 --- a/lib/Moose.pm +++ b/lib/Moose.pm @@ -136,6 +136,12 @@ Moose::Exporter->setup_import_methods( 'Carp::confess', 'Scalar::Util::blessed', ], + version_callback => sub { + my ($package, $version) = @_; + if ($version >= 3) { + Moose::Exporter->skip_strict($package, 1); + } + }, ); sub init_meta { diff --git a/lib/Moose/Exporter.pm b/lib/Moose/Exporter.pm index b16167b62..f0025a447 100644 --- a/lib/Moose/Exporter.pm +++ b/lib/Moose/Exporter.pm @@ -16,6 +16,8 @@ use Try::Tiny; use Moose::Util 'throw_exception'; use constant { + _HINTS_IMPLICIT_LOCAL => "$]" >= 5.008004, + # goto &UNIVERSAL::VERSION usually works on 5.8, but fails on some ARM # machines. Seems to always work on 5.10 though. _CAN_GOTO_VERSION => "$]" >= 5.010000, @@ -483,8 +485,10 @@ sub _make_import_sub { # to do anything special to make it affect that file # rather than this one (which is already compiled) - strict->import; - warnings->import; + if (!__PACKAGE__->skip_strict($exporting_package)) { + strict->import; + warnings->import; + } my $did_init_meta; for my $c ( grep { $_->can('init_meta') } $class, @{$exports_from} ) { @@ -744,6 +748,19 @@ sub _remove_keywords { } } +sub skip_strict { + shift; + my $package = shift; + my $key = join '/', __PACKAGE__, 'skip_strict', $package; + if (@_) { + my $value = shift; + $^H |= 0x20000 + unless _HINTS_IMPLICIT_LOCAL; + $^H{$key} = $value; + } + $^H{$key}; +} + sub _make_version_sub { shift; my $exporting_package = shift; diff --git a/lib/Moose/Role.pm b/lib/Moose/Role.pm index d2633e13a..c88ec5451 100644 --- a/lib/Moose/Role.pm +++ b/lib/Moose/Role.pm @@ -100,6 +100,12 @@ Moose::Exporter->setup_import_methods( 'Carp::confess', 'Scalar::Util::blessed', ], + version_callback => sub { + my ($package, $version) = @_; + if ($version >= 3) { + Moose::Exporter->skip_strict($package, 1); + } + }, ); sub init_meta { diff --git a/lib/Moose/Util/TypeConstraints.pm b/lib/Moose/Util/TypeConstraints.pm index 961297179..ba9fef90f 100644 --- a/lib/Moose/Util/TypeConstraints.pm +++ b/lib/Moose/Util/TypeConstraints.pm @@ -46,6 +46,12 @@ Moose::Exporter->setup_import_methods( register_type_constraint match_on_type ) ], + version_callback => sub { + my ($package, $version) = @_; + if ($version >= 3) { + Moose::Exporter->skip_strict($package, 1); + } + }, ); ## -------------------------------------------------------- From 2a6ed55c6dabf7b101825c9671d383f3b36493ce Mon Sep 17 00:00:00 2001 From: Graham Knop Date: Sat, 2 Nov 2024 17:14:52 +0100 Subject: [PATCH 3/3] bump version to 3 --- lib/Class/MOP.pm | 2 +- lib/Class/MOP/Attribute.pm | 2 +- lib/Class/MOP/Class.pm | 2 +- lib/Class/MOP/Class/Immutable/Trait.pm | 2 +- lib/Class/MOP/Deprecated.pm | 2 +- lib/Class/MOP/Instance.pm | 2 +- lib/Class/MOP/Method.pm | 2 +- lib/Class/MOP/Method/Accessor.pm | 2 +- lib/Class/MOP/Method/Constructor.pm | 2 +- lib/Class/MOP/Method/Generated.pm | 2 +- lib/Class/MOP/Method/Inlined.pm | 2 +- lib/Class/MOP/Method/Meta.pm | 2 +- lib/Class/MOP/Method/Wrapped.pm | 2 +- lib/Class/MOP/MiniTrait.pm | 2 +- lib/Class/MOP/Mixin.pm | 2 +- lib/Class/MOP/Mixin/AttributeCore.pm | 2 +- lib/Class/MOP/Mixin/HasAttributes.pm | 2 +- lib/Class/MOP/Mixin/HasMethods.pm | 2 +- lib/Class/MOP/Mixin/HasOverloads.pm | 2 +- lib/Class/MOP/Module.pm | 2 +- lib/Class/MOP/Object.pm | 2 +- lib/Class/MOP/Overload.pm | 2 +- lib/Class/MOP/Package.pm | 2 +- lib/Moose.pm | 2 +- lib/Moose/Deprecated.pm | 2 +- lib/Moose/Exception.pm | 2 +- lib/Moose/Exception/AccessorMustReadWrite.pm | 2 +- .../Exception/AddParameterizableTypeTakesParameterizableType.pm | 2 +- lib/Moose/Exception/AddRoleTakesAMooseMetaRoleInstance.pm | 2 +- lib/Moose/Exception/AddRoleToARoleTakesAMooseMetaRole.pm | 2 +- lib/Moose/Exception/ApplyTakesABlessedInstance.pm | 2 +- .../AttachToClassNeedsAClassMOPClassInstanceOrASubclass.pm | 2 +- lib/Moose/Exception/AttributeConflictInRoles.pm | 2 +- lib/Moose/Exception/AttributeConflictInSummation.pm | 2 +- lib/Moose/Exception/AttributeExtensionIsNotSupportedInRoles.pm | 2 +- lib/Moose/Exception/AttributeIsRequired.pm | 2 +- .../AttributeMustBeAnClassMOPMixinAttributeCoreOrSubclass.pm | 2 +- lib/Moose/Exception/AttributeNamesDoNotMatch.pm | 2 +- lib/Moose/Exception/AttributeValueIsNotAnObject.pm | 2 +- lib/Moose/Exception/AttributeValueIsNotDefined.pm | 2 +- lib/Moose/Exception/AutoDeRefNeedsArrayRefOrHashRef.pm | 2 +- lib/Moose/Exception/BadOptionFormat.pm | 2 +- lib/Moose/Exception/BothBuilderAndDefaultAreNotAllowed.pm | 2 +- lib/Moose/Exception/BuilderDoesNotExist.pm | 2 +- lib/Moose/Exception/BuilderMethodNotSupportedForAttribute.pm | 2 +- .../Exception/BuilderMethodNotSupportedForInlineAttribute.pm | 2 +- lib/Moose/Exception/BuilderMustBeAMethodName.pm | 2 +- lib/Moose/Exception/CallingMethodOnAnImmutableInstance.pm | 2 +- .../Exception/CallingReadOnlyMethodOnAnImmutableInstance.pm | 2 +- lib/Moose/Exception/CanExtendOnlyClasses.pm | 2 +- lib/Moose/Exception/CanOnlyConsumeRole.pm | 2 +- lib/Moose/Exception/CanOnlyWrapBlessedCode.pm | 2 +- lib/Moose/Exception/CanReblessOnlyIntoASubclass.pm | 2 +- lib/Moose/Exception/CanReblessOnlyIntoASuperclass.pm | 2 +- lib/Moose/Exception/CannotAddAdditionalTypeCoercionsToUnion.pm | 2 +- lib/Moose/Exception/CannotAddAsAnAttributeToARole.pm | 2 +- lib/Moose/Exception/CannotApplyBaseClassRolesToRole.pm | 2 +- lib/Moose/Exception/CannotAssignValueToReadOnlyAccessor.pm | 2 +- lib/Moose/Exception/CannotAugmentIfLocalMethodPresent.pm | 2 +- lib/Moose/Exception/CannotAugmentNoSuperMethod.pm | 2 +- lib/Moose/Exception/CannotAutoDerefWithoutIsa.pm | 2 +- lib/Moose/Exception/CannotAutoDereferenceTypeConstraint.pm | 2 +- lib/Moose/Exception/CannotCalculateNativeType.pm | 2 +- lib/Moose/Exception/CannotCallAnAbstractBaseMethod.pm | 2 +- lib/Moose/Exception/CannotCallAnAbstractMethod.pm | 2 +- lib/Moose/Exception/CannotCoerceAWeakRef.pm | 2 +- lib/Moose/Exception/CannotCoerceAttributeWhichHasNoCoercion.pm | 2 +- .../CannotCreateHigherOrderTypeWithoutATypeParameter.pm | 2 +- .../Exception/CannotCreateMethodAliasLocalMethodIsPresent.pm | 2 +- .../CannotCreateMethodAliasLocalMethodIsPresentInClass.pm | 2 +- lib/Moose/Exception/CannotDelegateLocalMethodIsPresent.pm | 2 +- lib/Moose/Exception/CannotDelegateWithoutIsa.pm | 2 +- lib/Moose/Exception/CannotFindDelegateMetaclass.pm | 2 +- lib/Moose/Exception/CannotFindType.pm | 2 +- lib/Moose/Exception/CannotFindTypeGivenToMatchOnType.pm | 2 +- lib/Moose/Exception/CannotFixMetaclassCompatibility.pm | 2 +- lib/Moose/Exception/CannotGenerateInlineConstraint.pm | 2 +- lib/Moose/Exception/CannotInitializeMooseMetaRoleComposite.pm | 2 +- lib/Moose/Exception/CannotInlineTypeConstraintCheck.pm | 2 +- lib/Moose/Exception/CannotLocatePackageInINC.pm | 2 +- lib/Moose/Exception/CannotMakeMetaclassCompatible.pm | 2 +- lib/Moose/Exception/CannotOverrideALocalMethod.pm | 2 +- lib/Moose/Exception/CannotOverrideBodyOfMetaMethods.pm | 2 +- lib/Moose/Exception/CannotOverrideLocalMethodIsPresent.pm | 2 +- lib/Moose/Exception/CannotOverrideNoSuperMethod.pm | 2 +- lib/Moose/Exception/CannotRegisterUnnamedTypeConstraint.pm | 2 +- .../Exception/CannotUseLazyBuildAndDefaultSimultaneously.pm | 2 +- lib/Moose/Exception/CircularReferenceInAlso.pm | 2 +- lib/Moose/Exception/ClassDoesNotHaveInitMeta.pm | 2 +- lib/Moose/Exception/ClassDoesTheExcludedRole.pm | 2 +- lib/Moose/Exception/ClassNamesDoNotMatch.pm | 2 +- lib/Moose/Exception/CloneObjectExpectsAnInstanceOfMetaclass.pm | 2 +- lib/Moose/Exception/CodeBlockMustBeACodeRef.pm | 2 +- lib/Moose/Exception/CoercingWithoutCoercions.pm | 2 +- lib/Moose/Exception/CoercionAlreadyExists.pm | 2 +- lib/Moose/Exception/CoercionNeedsTypeConstraint.pm | 2 +- lib/Moose/Exception/ConflictDetectedInCheckRoleExclusions.pm | 2 +- .../Exception/ConflictDetectedInCheckRoleExclusionsInToClass.pm | 2 +- lib/Moose/Exception/ConstructClassInstanceTakesPackageName.pm | 2 +- lib/Moose/Exception/CouldNotCreateMethod.pm | 2 +- lib/Moose/Exception/CouldNotCreateWriter.pm | 2 +- lib/Moose/Exception/CouldNotEvalConstructor.pm | 2 +- lib/Moose/Exception/CouldNotEvalDestructor.pm | 2 +- lib/Moose/Exception/CouldNotFindTypeConstraintToCoerceFrom.pm | 2 +- lib/Moose/Exception/CouldNotGenerateInlineAttributeMethod.pm | 2 +- lib/Moose/Exception/CouldNotLocateTypeConstraintForUnion.pm | 2 +- lib/Moose/Exception/CouldNotParseType.pm | 2 +- lib/Moose/Exception/CreateMOPClassTakesArrayRefOfAttributes.pm | 2 +- .../Exception/CreateMOPClassTakesArrayRefOfSuperclasses.pm | 2 +- lib/Moose/Exception/CreateMOPClassTakesHashRefOfMethods.pm | 2 +- lib/Moose/Exception/CreateTakesArrayRefOfRoles.pm | 2 +- lib/Moose/Exception/CreateTakesHashRefOfAttributes.pm | 2 +- lib/Moose/Exception/CreateTakesHashRefOfMethods.pm | 2 +- lib/Moose/Exception/DefaultToMatchOnTypeMustBeCodeRef.pm | 2 +- lib/Moose/Exception/DelegationToAClassWhichIsNotLoaded.pm | 2 +- lib/Moose/Exception/DelegationToARoleWhichIsNotLoaded.pm | 2 +- lib/Moose/Exception/DelegationToATypeWhichIsNotAClass.pm | 2 +- lib/Moose/Exception/DoesRequiresRoleName.pm | 2 +- .../Exception/EnumCalledWithAnArrayRefAndAdditionalArgs.pm | 2 +- lib/Moose/Exception/EnumValuesMustBeString.pm | 2 +- lib/Moose/Exception/ExtendsMissingArgs.pm | 2 +- lib/Moose/Exception/HandlesMustBeAHashRef.pm | 2 +- lib/Moose/Exception/IllegalInheritedOptions.pm | 2 +- lib/Moose/Exception/IllegalMethodTypeToAddMethodModifier.pm | 2 +- lib/Moose/Exception/IncompatibleMetaclassOfSuperclass.pm | 2 +- lib/Moose/Exception/InitMetaRequiresClass.pm | 2 +- lib/Moose/Exception/InitializeTakesUnBlessedPackageName.pm | 2 +- lib/Moose/Exception/InstanceBlessedIntoWrongClass.pm | 2 +- lib/Moose/Exception/InstanceMustBeABlessedReference.pm | 2 +- lib/Moose/Exception/InvalidArgPassedToMooseUtilMetaRole.pm | 2 +- lib/Moose/Exception/InvalidArgumentToMethod.pm | 2 +- lib/Moose/Exception/InvalidArgumentsToTraitAliases.pm | 2 +- .../InvalidBaseTypeGivenToCreateParameterizedTypeConstraint.pm | 2 +- lib/Moose/Exception/InvalidHandleValue.pm | 2 +- lib/Moose/Exception/InvalidHasProvidedInARole.pm | 2 +- lib/Moose/Exception/InvalidNameForType.pm | 2 +- lib/Moose/Exception/InvalidOverloadOperator.pm | 2 +- lib/Moose/Exception/InvalidRoleApplication.pm | 2 +- lib/Moose/Exception/InvalidTypeConstraint.pm | 2 +- .../InvalidTypeGivenToCreateParameterizedTypeConstraint.pm | 2 +- lib/Moose/Exception/InvalidValueForIs.pm | 2 +- lib/Moose/Exception/IsaDoesNotDoTheRole.pm | 2 +- lib/Moose/Exception/IsaLacksDoesMethod.pm | 2 +- lib/Moose/Exception/LazyAttributeNeedsADefault.pm | 2 +- lib/Moose/Exception/Legacy.pm | 2 +- lib/Moose/Exception/MOPAttributeNewNeedsAttributeName.pm | 2 +- lib/Moose/Exception/MatchActionMustBeACodeRef.pm | 2 +- lib/Moose/Exception/MessageParameterMustBeCodeRef.pm | 2 +- .../Exception/MetaclassIsAClassNotASubclassOfGivenMetaclass.pm | 2 +- .../Exception/MetaclassIsARoleNotASubclassOfGivenMetaclass.pm | 2 +- lib/Moose/Exception/MetaclassIsNotASubclassOfGivenMetaclass.pm | 2 +- lib/Moose/Exception/MetaclassMustBeASubclassOfMooseMetaClass.pm | 2 +- lib/Moose/Exception/MetaclassMustBeASubclassOfMooseMetaRole.pm | 2 +- lib/Moose/Exception/MetaclassMustBeDerivedFromClassMOPClass.pm | 2 +- lib/Moose/Exception/MetaclassNotLoaded.pm | 2 +- lib/Moose/Exception/MetaclassTypeIncompatible.pm | 2 +- lib/Moose/Exception/MethodExpectedAMetaclassObject.pm | 2 +- lib/Moose/Exception/MethodExpectsFewerArgs.pm | 2 +- lib/Moose/Exception/MethodExpectsMoreArgs.pm | 2 +- lib/Moose/Exception/MethodModifierNeedsMethodName.pm | 2 +- lib/Moose/Exception/MethodNameConflictInRoles.pm | 2 +- lib/Moose/Exception/MethodNameNotFoundInInheritanceHierarchy.pm | 2 +- lib/Moose/Exception/MethodNameNotGiven.pm | 2 +- lib/Moose/Exception/MustDefineAMethodName.pm | 2 +- lib/Moose/Exception/MustDefineAnAttributeName.pm | 2 +- lib/Moose/Exception/MustDefineAnOverloadOperator.pm | 2 +- lib/Moose/Exception/MustHaveAtLeastOneValueToEnumerate.pm | 2 +- lib/Moose/Exception/MustPassAHashOfOptions.pm | 2 +- lib/Moose/Exception/MustPassAMooseMetaRoleInstanceOrSubclass.pm | 2 +- .../MustPassAPackageNameOrAnExistingClassMOPPackageInstance.pm | 2 +- lib/Moose/Exception/MustPassEvenNumberOfArguments.pm | 2 +- lib/Moose/Exception/MustPassEvenNumberOfAttributeOptions.pm | 2 +- lib/Moose/Exception/MustProvideANameForTheAttribute.pm | 2 +- lib/Moose/Exception/MustSpecifyAtleastOneMethod.pm | 2 +- lib/Moose/Exception/MustSpecifyAtleastOneRole.pm | 2 +- lib/Moose/Exception/MustSpecifyAtleastOneRoleToApplicant.pm | 2 +- lib/Moose/Exception/MustSupplyAClassMOPAttributeInstance.pm | 2 +- lib/Moose/Exception/MustSupplyADelegateToMethod.pm | 2 +- lib/Moose/Exception/MustSupplyAMetaclass.pm | 2 +- lib/Moose/Exception/MustSupplyAMooseMetaAttributeInstance.pm | 2 +- lib/Moose/Exception/MustSupplyAnAccessorTypeToConstructWith.pm | 2 +- lib/Moose/Exception/MustSupplyAnAttributeToConstructWith.pm | 2 +- lib/Moose/Exception/MustSupplyArrayRefAsCurriedArguments.pm | 2 +- lib/Moose/Exception/MustSupplyPackageNameAndName.pm | 2 +- .../Exception/NeedsTypeConstraintUnionForTypeCoercionUnion.pm | 2 +- lib/Moose/Exception/NeitherAttributeNorAttributeNameIsGiven.pm | 2 +- lib/Moose/Exception/NeitherClassNorClassNameIsGiven.pm | 2 +- lib/Moose/Exception/NeitherRoleNorRoleNameIsGiven.pm | 2 +- lib/Moose/Exception/NeitherTypeNorTypeNameIsGiven.pm | 2 +- lib/Moose/Exception/NoAttributeFoundInSuperClass.pm | 2 +- lib/Moose/Exception/NoBodyToInitializeInAnAbstractBaseClass.pm | 2 +- lib/Moose/Exception/NoCasesMatched.pm | 2 +- lib/Moose/Exception/NoConstraintCheckForTypeConstraint.pm | 2 +- lib/Moose/Exception/NoDestructorClassSpecified.pm | 2 +- lib/Moose/Exception/NoImmutableTraitSpecifiedForClass.pm | 2 +- lib/Moose/Exception/NoParentGivenToSubtype.pm | 2 +- lib/Moose/Exception/OnlyInstancesCanBeCloned.pm | 2 +- lib/Moose/Exception/OperatorIsRequired.pm | 2 +- lib/Moose/Exception/OverloadConflictInSummation.pm | 2 +- lib/Moose/Exception/OverloadRequiresAMetaClass.pm | 2 +- lib/Moose/Exception/OverloadRequiresAMetaMethod.pm | 2 +- lib/Moose/Exception/OverloadRequiresAMetaOverload.pm | 2 +- lib/Moose/Exception/OverloadRequiresAMethodNameOrCoderef.pm | 2 +- lib/Moose/Exception/OverloadRequiresAnOperator.pm | 2 +- lib/Moose/Exception/OverloadRequiresNamesForCoderef.pm | 2 +- lib/Moose/Exception/OverrideConflictInComposition.pm | 2 +- lib/Moose/Exception/OverrideConflictInSummation.pm | 2 +- lib/Moose/Exception/PackageDoesNotUseMooseExporter.pm | 2 +- lib/Moose/Exception/PackageNameAndNameParamsNotGivenToWrap.pm | 2 +- lib/Moose/Exception/PackagesAndModulesAreNotCachable.pm | 2 +- lib/Moose/Exception/ParameterIsNotSubtypeOfParent.pm | 2 +- lib/Moose/Exception/ReferencesAreNotAllowedAsDefault.pm | 2 +- lib/Moose/Exception/RequiredAttributeLacksInitialization.pm | 2 +- lib/Moose/Exception/RequiredAttributeNeedsADefault.pm | 2 +- lib/Moose/Exception/RequiredMethodsImportedByClass.pm | 2 +- lib/Moose/Exception/RequiredMethodsNotImplementedByClass.pm | 2 +- lib/Moose/Exception/Role/Attribute.pm | 2 +- lib/Moose/Exception/Role/AttributeName.pm | 2 +- lib/Moose/Exception/Role/Class.pm | 2 +- lib/Moose/Exception/Role/EitherAttributeOrAttributeName.pm | 2 +- lib/Moose/Exception/Role/Instance.pm | 2 +- lib/Moose/Exception/Role/InstanceClass.pm | 2 +- lib/Moose/Exception/Role/InvalidAttributeOptions.pm | 2 +- lib/Moose/Exception/Role/Method.pm | 2 +- lib/Moose/Exception/Role/ParamsHash.pm | 2 +- lib/Moose/Exception/Role/Role.pm | 2 +- lib/Moose/Exception/Role/RoleForCreate.pm | 2 +- lib/Moose/Exception/Role/RoleForCreateMOPClass.pm | 2 +- lib/Moose/Exception/Role/TypeConstraint.pm | 2 +- lib/Moose/Exception/RoleDoesTheExcludedRole.pm | 2 +- lib/Moose/Exception/RoleExclusionConflict.pm | 2 +- lib/Moose/Exception/RoleNameRequired.pm | 2 +- lib/Moose/Exception/RoleNameRequiredForMooseMetaRole.pm | 2 +- lib/Moose/Exception/RolesDoNotSupportAugment.pm | 2 +- lib/Moose/Exception/RolesDoNotSupportExtends.pm | 2 +- lib/Moose/Exception/RolesDoNotSupportInner.pm | 2 +- .../RolesDoNotSupportRegexReferencesForMethodModifiers.pm | 2 +- lib/Moose/Exception/RolesInCreateTakesAnArrayRef.pm | 2 +- lib/Moose/Exception/RolesListMustBeInstancesOfMooseMetaRole.pm | 2 +- lib/Moose/Exception/SingleParamsToNewMustBeHashRef.pm | 2 +- lib/Moose/Exception/TriggerMustBeACodeRef.pm | 2 +- .../TypeConstraintCannotBeUsedForAParameterizableType.pm | 2 +- lib/Moose/Exception/TypeConstraintIsAlreadyCreated.pm | 2 +- lib/Moose/Exception/TypeParameterMustBeMooseMetaType.pm | 2 +- lib/Moose/Exception/UnableToCanonicalizeHandles.pm | 2 +- lib/Moose/Exception/UnableToCanonicalizeNonRolePackage.pm | 2 +- lib/Moose/Exception/UnableToRecognizeDelegateMetaclass.pm | 2 +- lib/Moose/Exception/UndefinedHashKeysPassedToMethod.pm | 2 +- .../Exception/UnionCalledWithAnArrayRefAndAdditionalArgs.pm | 2 +- lib/Moose/Exception/UnionTakesAtleastTwoTypeNames.pm | 2 +- lib/Moose/Exception/ValidationFailedForInlineTypeConstraint.pm | 2 +- lib/Moose/Exception/ValidationFailedForTypeConstraint.pm | 2 +- lib/Moose/Exception/WrapTakesACodeRefToBless.pm | 2 +- lib/Moose/Exception/WrongTypeConstraintGiven.pm | 2 +- lib/Moose/Exporter.pm | 2 +- lib/Moose/Meta/Attribute.pm | 2 +- lib/Moose/Meta/Attribute/Native.pm | 2 +- lib/Moose/Meta/Attribute/Native/Trait.pm | 2 +- lib/Moose/Meta/Attribute/Native/Trait/Array.pm | 2 +- lib/Moose/Meta/Attribute/Native/Trait/Bool.pm | 2 +- lib/Moose/Meta/Attribute/Native/Trait/Code.pm | 2 +- lib/Moose/Meta/Attribute/Native/Trait/Counter.pm | 2 +- lib/Moose/Meta/Attribute/Native/Trait/Hash.pm | 2 +- lib/Moose/Meta/Attribute/Native/Trait/Number.pm | 2 +- lib/Moose/Meta/Attribute/Native/Trait/String.pm | 2 +- lib/Moose/Meta/Class.pm | 2 +- lib/Moose/Meta/Class/Immutable/Trait.pm | 2 +- lib/Moose/Meta/Instance.pm | 2 +- lib/Moose/Meta/Method.pm | 2 +- lib/Moose/Meta/Method/Accessor.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Array.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Array/Writer.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Array/accessor.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Array/clear.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Array/count.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Array/delete.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Array/elements.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Array/first.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Array/first_index.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Array/get.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Array/grep.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Array/insert.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Array/is_empty.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Array/join.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Array/map.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Array/natatime.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Array/pop.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Array/push.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Array/reduce.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Array/set.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Array/shallow_clone.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Array/shift.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Array/shuffle.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Array/sort.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Array/sort_in_place.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Array/splice.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Array/uniq.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Array/unshift.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Bool/not.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Bool/set.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Bool/toggle.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Bool/unset.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Code/execute.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Code/execute_method.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Collection.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Counter/Writer.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Counter/dec.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Counter/inc.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Counter/reset.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Counter/set.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Hash.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Hash/Writer.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Hash/accessor.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Hash/clear.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Hash/count.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Hash/defined.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Hash/delete.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Hash/elements.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Hash/exists.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Hash/get.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Hash/is_empty.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Hash/keys.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Hash/kv.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Hash/set.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Hash/shallow_clone.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Hash/values.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Number/abs.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Number/add.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Number/div.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Number/mod.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Number/mul.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Number/set.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Number/sub.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Reader.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/String/append.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/String/chomp.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/String/chop.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/String/clear.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/String/inc.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/String/length.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/String/match.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/String/prepend.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/String/replace.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/String/substr.pm | 2 +- lib/Moose/Meta/Method/Accessor/Native/Writer.pm | 2 +- lib/Moose/Meta/Method/Augmented.pm | 2 +- lib/Moose/Meta/Method/Constructor.pm | 2 +- lib/Moose/Meta/Method/Delegation.pm | 2 +- lib/Moose/Meta/Method/Destructor.pm | 2 +- lib/Moose/Meta/Method/Meta.pm | 2 +- lib/Moose/Meta/Method/Overridden.pm | 2 +- lib/Moose/Meta/Mixin/AttributeCore.pm | 2 +- lib/Moose/Meta/Object/Trait.pm | 2 +- lib/Moose/Meta/Role.pm | 2 +- lib/Moose/Meta/Role/Application.pm | 2 +- lib/Moose/Meta/Role/Application/RoleSummation.pm | 2 +- lib/Moose/Meta/Role/Application/ToClass.pm | 2 +- lib/Moose/Meta/Role/Application/ToInstance.pm | 2 +- lib/Moose/Meta/Role/Application/ToRole.pm | 2 +- lib/Moose/Meta/Role/Attribute.pm | 2 +- lib/Moose/Meta/Role/Composite.pm | 2 +- lib/Moose/Meta/Role/Method.pm | 2 +- lib/Moose/Meta/Role/Method/Conflicting.pm | 2 +- lib/Moose/Meta/Role/Method/Required.pm | 2 +- lib/Moose/Meta/TypeCoercion.pm | 2 +- lib/Moose/Meta/TypeCoercion/Union.pm | 2 +- lib/Moose/Meta/TypeConstraint.pm | 2 +- lib/Moose/Meta/TypeConstraint/Class.pm | 2 +- lib/Moose/Meta/TypeConstraint/DuckType.pm | 2 +- lib/Moose/Meta/TypeConstraint/Enum.pm | 2 +- lib/Moose/Meta/TypeConstraint/Parameterizable.pm | 2 +- lib/Moose/Meta/TypeConstraint/Parameterized.pm | 2 +- lib/Moose/Meta/TypeConstraint/Registry.pm | 2 +- lib/Moose/Meta/TypeConstraint/Role.pm | 2 +- lib/Moose/Meta/TypeConstraint/Union.pm | 2 +- lib/Moose/Object.pm | 2 +- lib/Moose/Role.pm | 2 +- lib/Moose/Util.pm | 2 +- lib/Moose/Util/MetaRole.pm | 2 +- lib/Moose/Util/TypeConstraints.pm | 2 +- lib/Moose/Util/TypeConstraints/Builtins.pm | 2 +- lib/Test/Moose.pm | 2 +- lib/metaclass.pm | 2 +- lib/oose.pm | 2 +- 385 files changed, 385 insertions(+), 385 deletions(-) diff --git a/lib/Class/MOP.pm b/lib/Class/MOP.pm index c2a7ccb55..933bae32f 100644 --- a/lib/Class/MOP.pm +++ b/lib/Class/MOP.pm @@ -1,5 +1,5 @@ package Class::MOP; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Class/MOP/Attribute.pm b/lib/Class/MOP/Attribute.pm index 838791e18..da6b2b2a5 100644 --- a/lib/Class/MOP/Attribute.pm +++ b/lib/Class/MOP/Attribute.pm @@ -1,5 +1,5 @@ package Class::MOP::Attribute; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Class/MOP/Class.pm b/lib/Class/MOP/Class.pm index 9e477bf33..79fb5b072 100644 --- a/lib/Class/MOP/Class.pm +++ b/lib/Class/MOP/Class.pm @@ -1,5 +1,5 @@ package Class::MOP::Class; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Class/MOP/Class/Immutable/Trait.pm b/lib/Class/MOP/Class/Immutable/Trait.pm index f35c2e8ba..fb6e7ad16 100644 --- a/lib/Class/MOP/Class/Immutable/Trait.pm +++ b/lib/Class/MOP/Class/Immutable/Trait.pm @@ -1,5 +1,5 @@ package Class::MOP::Class::Immutable::Trait; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Class/MOP/Deprecated.pm b/lib/Class/MOP/Deprecated.pm index 7b30421b2..fcbb03a5a 100644 --- a/lib/Class/MOP/Deprecated.pm +++ b/lib/Class/MOP/Deprecated.pm @@ -1,5 +1,5 @@ package Class::MOP::Deprecated; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Class/MOP/Instance.pm b/lib/Class/MOP/Instance.pm index 47d168b34..a90786e17 100644 --- a/lib/Class/MOP/Instance.pm +++ b/lib/Class/MOP/Instance.pm @@ -1,5 +1,5 @@ package Class::MOP::Instance; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Class/MOP/Method.pm b/lib/Class/MOP/Method.pm index a501dca76..8cdb8bee3 100644 --- a/lib/Class/MOP/Method.pm +++ b/lib/Class/MOP/Method.pm @@ -1,5 +1,5 @@ package Class::MOP::Method; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Class/MOP/Method/Accessor.pm b/lib/Class/MOP/Method/Accessor.pm index b790fad14..933d28b6a 100644 --- a/lib/Class/MOP/Method/Accessor.pm +++ b/lib/Class/MOP/Method/Accessor.pm @@ -1,5 +1,5 @@ package Class::MOP::Method::Accessor; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Class/MOP/Method/Constructor.pm b/lib/Class/MOP/Method/Constructor.pm index b62248194..475a5ba80 100644 --- a/lib/Class/MOP/Method/Constructor.pm +++ b/lib/Class/MOP/Method/Constructor.pm @@ -1,5 +1,5 @@ package Class::MOP::Method::Constructor; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Class/MOP/Method/Generated.pm b/lib/Class/MOP/Method/Generated.pm index 5015ea7d1..603ce530a 100644 --- a/lib/Class/MOP/Method/Generated.pm +++ b/lib/Class/MOP/Method/Generated.pm @@ -1,5 +1,5 @@ package Class::MOP::Method::Generated; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Class/MOP/Method/Inlined.pm b/lib/Class/MOP/Method/Inlined.pm index 900a7784e..20d48525b 100644 --- a/lib/Class/MOP/Method/Inlined.pm +++ b/lib/Class/MOP/Method/Inlined.pm @@ -1,5 +1,5 @@ package Class::MOP::Method::Inlined; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Class/MOP/Method/Meta.pm b/lib/Class/MOP/Method/Meta.pm index b6847b74a..dfc5e427f 100644 --- a/lib/Class/MOP/Method/Meta.pm +++ b/lib/Class/MOP/Method/Meta.pm @@ -1,5 +1,5 @@ package Class::MOP::Method::Meta; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Class/MOP/Method/Wrapped.pm b/lib/Class/MOP/Method/Wrapped.pm index 15b306f78..b2dd913ce 100644 --- a/lib/Class/MOP/Method/Wrapped.pm +++ b/lib/Class/MOP/Method/Wrapped.pm @@ -1,5 +1,5 @@ package Class::MOP::Method::Wrapped; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Class/MOP/MiniTrait.pm b/lib/Class/MOP/MiniTrait.pm index 3339f58aa..289533175 100644 --- a/lib/Class/MOP/MiniTrait.pm +++ b/lib/Class/MOP/MiniTrait.pm @@ -1,5 +1,5 @@ package Class::MOP::MiniTrait; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Class/MOP/Mixin.pm b/lib/Class/MOP/Mixin.pm index baa7f4654..bbbf99ebb 100644 --- a/lib/Class/MOP/Mixin.pm +++ b/lib/Class/MOP/Mixin.pm @@ -1,5 +1,5 @@ package Class::MOP::Mixin; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Class/MOP/Mixin/AttributeCore.pm b/lib/Class/MOP/Mixin/AttributeCore.pm index bc23b21ca..ee44caadc 100644 --- a/lib/Class/MOP/Mixin/AttributeCore.pm +++ b/lib/Class/MOP/Mixin/AttributeCore.pm @@ -1,5 +1,5 @@ package Class::MOP::Mixin::AttributeCore; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Class/MOP/Mixin/HasAttributes.pm b/lib/Class/MOP/Mixin/HasAttributes.pm index c771945a3..4f20352e7 100644 --- a/lib/Class/MOP/Mixin/HasAttributes.pm +++ b/lib/Class/MOP/Mixin/HasAttributes.pm @@ -1,5 +1,5 @@ package Class::MOP::Mixin::HasAttributes; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Class/MOP/Mixin/HasMethods.pm b/lib/Class/MOP/Mixin/HasMethods.pm index d8dd6f524..7b25781e9 100644 --- a/lib/Class/MOP/Mixin/HasMethods.pm +++ b/lib/Class/MOP/Mixin/HasMethods.pm @@ -1,5 +1,5 @@ package Class::MOP::Mixin::HasMethods; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Class/MOP/Mixin/HasOverloads.pm b/lib/Class/MOP/Mixin/HasOverloads.pm index 97c4eed65..05140d84b 100644 --- a/lib/Class/MOP/Mixin/HasOverloads.pm +++ b/lib/Class/MOP/Mixin/HasOverloads.pm @@ -1,5 +1,5 @@ package Class::MOP::Mixin::HasOverloads; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Class/MOP/Module.pm b/lib/Class/MOP/Module.pm index 38059ba67..7465fda03 100644 --- a/lib/Class/MOP/Module.pm +++ b/lib/Class/MOP/Module.pm @@ -1,5 +1,5 @@ package Class::MOP::Module; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Class/MOP/Object.pm b/lib/Class/MOP/Object.pm index c7e8d02d4..a977ce214 100644 --- a/lib/Class/MOP/Object.pm +++ b/lib/Class/MOP/Object.pm @@ -1,5 +1,5 @@ package Class::MOP::Object; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Class/MOP/Overload.pm b/lib/Class/MOP/Overload.pm index e8bd5c47d..fff279bf5 100644 --- a/lib/Class/MOP/Overload.pm +++ b/lib/Class/MOP/Overload.pm @@ -1,5 +1,5 @@ package Class::MOP::Overload; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Class/MOP/Package.pm b/lib/Class/MOP/Package.pm index bc02c6698..89491ad9c 100644 --- a/lib/Class/MOP/Package.pm +++ b/lib/Class/MOP/Package.pm @@ -1,5 +1,5 @@ package Class::MOP::Package; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose.pm b/lib/Moose.pm index 2493da46d..298e05d2d 100644 --- a/lib/Moose.pm +++ b/lib/Moose.pm @@ -1,7 +1,7 @@ use strict; use warnings; package Moose; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; our $AUTHORITY = 'cpan:STEVAN'; use 5.008003; diff --git a/lib/Moose/Deprecated.pm b/lib/Moose/Deprecated.pm index 7137cb312..f6a209b0e 100644 --- a/lib/Moose/Deprecated.pm +++ b/lib/Moose/Deprecated.pm @@ -1,5 +1,5 @@ package Moose::Deprecated; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Exception.pm b/lib/Moose/Exception.pm index 77d6b443c..4d829c235 100644 --- a/lib/Moose/Exception.pm +++ b/lib/Moose/Exception.pm @@ -1,5 +1,5 @@ package Moose::Exception; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; use Devel::StackTrace 2.03; diff --git a/lib/Moose/Exception/AccessorMustReadWrite.pm b/lib/Moose/Exception/AccessorMustReadWrite.pm index 5d633a24c..405e72e5e 100644 --- a/lib/Moose/Exception/AccessorMustReadWrite.pm +++ b/lib/Moose/Exception/AccessorMustReadWrite.pm @@ -1,5 +1,5 @@ package Moose::Exception::AccessorMustReadWrite; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/AddParameterizableTypeTakesParameterizableType.pm b/lib/Moose/Exception/AddParameterizableTypeTakesParameterizableType.pm index 5c2a80932..77fc14f60 100644 --- a/lib/Moose/Exception/AddParameterizableTypeTakesParameterizableType.pm +++ b/lib/Moose/Exception/AddParameterizableTypeTakesParameterizableType.pm @@ -1,5 +1,5 @@ package Moose::Exception::AddParameterizableTypeTakesParameterizableType; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/AddRoleTakesAMooseMetaRoleInstance.pm b/lib/Moose/Exception/AddRoleTakesAMooseMetaRoleInstance.pm index 9fd6c68e5..93569028d 100644 --- a/lib/Moose/Exception/AddRoleTakesAMooseMetaRoleInstance.pm +++ b/lib/Moose/Exception/AddRoleTakesAMooseMetaRoleInstance.pm @@ -1,5 +1,5 @@ package Moose::Exception::AddRoleTakesAMooseMetaRoleInstance; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/AddRoleToARoleTakesAMooseMetaRole.pm b/lib/Moose/Exception/AddRoleToARoleTakesAMooseMetaRole.pm index c39c3bbc0..8cad2f9b6 100644 --- a/lib/Moose/Exception/AddRoleToARoleTakesAMooseMetaRole.pm +++ b/lib/Moose/Exception/AddRoleToARoleTakesAMooseMetaRole.pm @@ -1,5 +1,5 @@ package Moose::Exception::AddRoleToARoleTakesAMooseMetaRole; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/ApplyTakesABlessedInstance.pm b/lib/Moose/Exception/ApplyTakesABlessedInstance.pm index 7e96c2b0f..a6fdf6ea6 100644 --- a/lib/Moose/Exception/ApplyTakesABlessedInstance.pm +++ b/lib/Moose/Exception/ApplyTakesABlessedInstance.pm @@ -1,5 +1,5 @@ package Moose::Exception::ApplyTakesABlessedInstance; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/AttachToClassNeedsAClassMOPClassInstanceOrASubclass.pm b/lib/Moose/Exception/AttachToClassNeedsAClassMOPClassInstanceOrASubclass.pm index a5b446316..228456829 100644 --- a/lib/Moose/Exception/AttachToClassNeedsAClassMOPClassInstanceOrASubclass.pm +++ b/lib/Moose/Exception/AttachToClassNeedsAClassMOPClassInstanceOrASubclass.pm @@ -1,5 +1,5 @@ package Moose::Exception::AttachToClassNeedsAClassMOPClassInstanceOrASubclass; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/AttributeConflictInRoles.pm b/lib/Moose/Exception/AttributeConflictInRoles.pm index 604272271..65a6076ec 100644 --- a/lib/Moose/Exception/AttributeConflictInRoles.pm +++ b/lib/Moose/Exception/AttributeConflictInRoles.pm @@ -1,5 +1,5 @@ package Moose::Exception::AttributeConflictInRoles; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/AttributeConflictInSummation.pm b/lib/Moose/Exception/AttributeConflictInSummation.pm index b13aeecd4..04661f47e 100644 --- a/lib/Moose/Exception/AttributeConflictInSummation.pm +++ b/lib/Moose/Exception/AttributeConflictInSummation.pm @@ -1,5 +1,5 @@ package Moose::Exception::AttributeConflictInSummation; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/AttributeExtensionIsNotSupportedInRoles.pm b/lib/Moose/Exception/AttributeExtensionIsNotSupportedInRoles.pm index 0b6fc1de3..4e35664a4 100644 --- a/lib/Moose/Exception/AttributeExtensionIsNotSupportedInRoles.pm +++ b/lib/Moose/Exception/AttributeExtensionIsNotSupportedInRoles.pm @@ -1,5 +1,5 @@ package Moose::Exception::AttributeExtensionIsNotSupportedInRoles; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/AttributeIsRequired.pm b/lib/Moose/Exception/AttributeIsRequired.pm index 381b31592..a8bd7ecfc 100644 --- a/lib/Moose/Exception/AttributeIsRequired.pm +++ b/lib/Moose/Exception/AttributeIsRequired.pm @@ -1,5 +1,5 @@ package Moose::Exception::AttributeIsRequired; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/AttributeMustBeAnClassMOPMixinAttributeCoreOrSubclass.pm b/lib/Moose/Exception/AttributeMustBeAnClassMOPMixinAttributeCoreOrSubclass.pm index 1cfe0fd0f..4e7aae8b7 100644 --- a/lib/Moose/Exception/AttributeMustBeAnClassMOPMixinAttributeCoreOrSubclass.pm +++ b/lib/Moose/Exception/AttributeMustBeAnClassMOPMixinAttributeCoreOrSubclass.pm @@ -1,5 +1,5 @@ package Moose::Exception::AttributeMustBeAnClassMOPMixinAttributeCoreOrSubclass; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/AttributeNamesDoNotMatch.pm b/lib/Moose/Exception/AttributeNamesDoNotMatch.pm index 626ee0623..463308e4e 100644 --- a/lib/Moose/Exception/AttributeNamesDoNotMatch.pm +++ b/lib/Moose/Exception/AttributeNamesDoNotMatch.pm @@ -1,5 +1,5 @@ package Moose::Exception::AttributeNamesDoNotMatch; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/AttributeValueIsNotAnObject.pm b/lib/Moose/Exception/AttributeValueIsNotAnObject.pm index 9e129ef27..83cf1250a 100644 --- a/lib/Moose/Exception/AttributeValueIsNotAnObject.pm +++ b/lib/Moose/Exception/AttributeValueIsNotAnObject.pm @@ -1,5 +1,5 @@ package Moose::Exception::AttributeValueIsNotAnObject; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/AttributeValueIsNotDefined.pm b/lib/Moose/Exception/AttributeValueIsNotDefined.pm index 72c787f77..8c7411187 100644 --- a/lib/Moose/Exception/AttributeValueIsNotDefined.pm +++ b/lib/Moose/Exception/AttributeValueIsNotDefined.pm @@ -1,5 +1,5 @@ package Moose::Exception::AttributeValueIsNotDefined; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/AutoDeRefNeedsArrayRefOrHashRef.pm b/lib/Moose/Exception/AutoDeRefNeedsArrayRefOrHashRef.pm index 89954793e..d97e5ada0 100644 --- a/lib/Moose/Exception/AutoDeRefNeedsArrayRefOrHashRef.pm +++ b/lib/Moose/Exception/AutoDeRefNeedsArrayRefOrHashRef.pm @@ -1,5 +1,5 @@ package Moose::Exception::AutoDeRefNeedsArrayRefOrHashRef; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/BadOptionFormat.pm b/lib/Moose/Exception/BadOptionFormat.pm index 5b40955dc..783e23143 100644 --- a/lib/Moose/Exception/BadOptionFormat.pm +++ b/lib/Moose/Exception/BadOptionFormat.pm @@ -1,5 +1,5 @@ package Moose::Exception::BadOptionFormat; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/BothBuilderAndDefaultAreNotAllowed.pm b/lib/Moose/Exception/BothBuilderAndDefaultAreNotAllowed.pm index 994076886..937183ab7 100644 --- a/lib/Moose/Exception/BothBuilderAndDefaultAreNotAllowed.pm +++ b/lib/Moose/Exception/BothBuilderAndDefaultAreNotAllowed.pm @@ -1,5 +1,5 @@ package Moose::Exception::BothBuilderAndDefaultAreNotAllowed; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/BuilderDoesNotExist.pm b/lib/Moose/Exception/BuilderDoesNotExist.pm index 016869f59..b5c45936c 100644 --- a/lib/Moose/Exception/BuilderDoesNotExist.pm +++ b/lib/Moose/Exception/BuilderDoesNotExist.pm @@ -1,5 +1,5 @@ package Moose::Exception::BuilderDoesNotExist; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/BuilderMethodNotSupportedForAttribute.pm b/lib/Moose/Exception/BuilderMethodNotSupportedForAttribute.pm index c691d7960..573d8fb6b 100644 --- a/lib/Moose/Exception/BuilderMethodNotSupportedForAttribute.pm +++ b/lib/Moose/Exception/BuilderMethodNotSupportedForAttribute.pm @@ -1,5 +1,5 @@ package Moose::Exception::BuilderMethodNotSupportedForAttribute; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/BuilderMethodNotSupportedForInlineAttribute.pm b/lib/Moose/Exception/BuilderMethodNotSupportedForInlineAttribute.pm index acc8c170c..6b578b4a0 100644 --- a/lib/Moose/Exception/BuilderMethodNotSupportedForInlineAttribute.pm +++ b/lib/Moose/Exception/BuilderMethodNotSupportedForInlineAttribute.pm @@ -1,5 +1,5 @@ package Moose::Exception::BuilderMethodNotSupportedForInlineAttribute; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/BuilderMustBeAMethodName.pm b/lib/Moose/Exception/BuilderMustBeAMethodName.pm index 35682d8a4..3754bd02e 100644 --- a/lib/Moose/Exception/BuilderMustBeAMethodName.pm +++ b/lib/Moose/Exception/BuilderMustBeAMethodName.pm @@ -1,5 +1,5 @@ package Moose::Exception::BuilderMustBeAMethodName; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CallingMethodOnAnImmutableInstance.pm b/lib/Moose/Exception/CallingMethodOnAnImmutableInstance.pm index 488a683b1..7b350b673 100644 --- a/lib/Moose/Exception/CallingMethodOnAnImmutableInstance.pm +++ b/lib/Moose/Exception/CallingMethodOnAnImmutableInstance.pm @@ -1,5 +1,5 @@ package Moose::Exception::CallingMethodOnAnImmutableInstance; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CallingReadOnlyMethodOnAnImmutableInstance.pm b/lib/Moose/Exception/CallingReadOnlyMethodOnAnImmutableInstance.pm index 7262e0638..801829cf3 100644 --- a/lib/Moose/Exception/CallingReadOnlyMethodOnAnImmutableInstance.pm +++ b/lib/Moose/Exception/CallingReadOnlyMethodOnAnImmutableInstance.pm @@ -1,5 +1,5 @@ package Moose::Exception::CallingReadOnlyMethodOnAnImmutableInstance; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CanExtendOnlyClasses.pm b/lib/Moose/Exception/CanExtendOnlyClasses.pm index ad20c9f7e..1d8d47fe1 100644 --- a/lib/Moose/Exception/CanExtendOnlyClasses.pm +++ b/lib/Moose/Exception/CanExtendOnlyClasses.pm @@ -1,5 +1,5 @@ package Moose::Exception::CanExtendOnlyClasses; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CanOnlyConsumeRole.pm b/lib/Moose/Exception/CanOnlyConsumeRole.pm index bd154d695..52367e36c 100644 --- a/lib/Moose/Exception/CanOnlyConsumeRole.pm +++ b/lib/Moose/Exception/CanOnlyConsumeRole.pm @@ -1,5 +1,5 @@ package Moose::Exception::CanOnlyConsumeRole; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CanOnlyWrapBlessedCode.pm b/lib/Moose/Exception/CanOnlyWrapBlessedCode.pm index 130b52a6f..9a4a22f88 100644 --- a/lib/Moose/Exception/CanOnlyWrapBlessedCode.pm +++ b/lib/Moose/Exception/CanOnlyWrapBlessedCode.pm @@ -1,5 +1,5 @@ package Moose::Exception::CanOnlyWrapBlessedCode; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CanReblessOnlyIntoASubclass.pm b/lib/Moose/Exception/CanReblessOnlyIntoASubclass.pm index 0b20b3843..efaf53d44 100644 --- a/lib/Moose/Exception/CanReblessOnlyIntoASubclass.pm +++ b/lib/Moose/Exception/CanReblessOnlyIntoASubclass.pm @@ -1,5 +1,5 @@ package Moose::Exception::CanReblessOnlyIntoASubclass; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CanReblessOnlyIntoASuperclass.pm b/lib/Moose/Exception/CanReblessOnlyIntoASuperclass.pm index 3faf6b847..35ea64397 100644 --- a/lib/Moose/Exception/CanReblessOnlyIntoASuperclass.pm +++ b/lib/Moose/Exception/CanReblessOnlyIntoASuperclass.pm @@ -1,5 +1,5 @@ package Moose::Exception::CanReblessOnlyIntoASuperclass; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CannotAddAdditionalTypeCoercionsToUnion.pm b/lib/Moose/Exception/CannotAddAdditionalTypeCoercionsToUnion.pm index ba792ee46..ae1960159 100644 --- a/lib/Moose/Exception/CannotAddAdditionalTypeCoercionsToUnion.pm +++ b/lib/Moose/Exception/CannotAddAdditionalTypeCoercionsToUnion.pm @@ -1,5 +1,5 @@ package Moose::Exception::CannotAddAdditionalTypeCoercionsToUnion; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CannotAddAsAnAttributeToARole.pm b/lib/Moose/Exception/CannotAddAsAnAttributeToARole.pm index 301a3a9ce..18a01c035 100644 --- a/lib/Moose/Exception/CannotAddAsAnAttributeToARole.pm +++ b/lib/Moose/Exception/CannotAddAsAnAttributeToARole.pm @@ -1,5 +1,5 @@ package Moose::Exception::CannotAddAsAnAttributeToARole; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CannotApplyBaseClassRolesToRole.pm b/lib/Moose/Exception/CannotApplyBaseClassRolesToRole.pm index a9ae37588..f88d5fb51 100644 --- a/lib/Moose/Exception/CannotApplyBaseClassRolesToRole.pm +++ b/lib/Moose/Exception/CannotApplyBaseClassRolesToRole.pm @@ -1,5 +1,5 @@ package Moose::Exception::CannotApplyBaseClassRolesToRole; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CannotAssignValueToReadOnlyAccessor.pm b/lib/Moose/Exception/CannotAssignValueToReadOnlyAccessor.pm index 459404f40..9c4b79787 100644 --- a/lib/Moose/Exception/CannotAssignValueToReadOnlyAccessor.pm +++ b/lib/Moose/Exception/CannotAssignValueToReadOnlyAccessor.pm @@ -1,5 +1,5 @@ package Moose::Exception::CannotAssignValueToReadOnlyAccessor; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CannotAugmentIfLocalMethodPresent.pm b/lib/Moose/Exception/CannotAugmentIfLocalMethodPresent.pm index f10aef53e..cdd645872 100644 --- a/lib/Moose/Exception/CannotAugmentIfLocalMethodPresent.pm +++ b/lib/Moose/Exception/CannotAugmentIfLocalMethodPresent.pm @@ -1,5 +1,5 @@ package Moose::Exception::CannotAugmentIfLocalMethodPresent; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CannotAugmentNoSuperMethod.pm b/lib/Moose/Exception/CannotAugmentNoSuperMethod.pm index 4c5250fe3..6c6fb1141 100644 --- a/lib/Moose/Exception/CannotAugmentNoSuperMethod.pm +++ b/lib/Moose/Exception/CannotAugmentNoSuperMethod.pm @@ -1,5 +1,5 @@ package Moose::Exception::CannotAugmentNoSuperMethod; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CannotAutoDerefWithoutIsa.pm b/lib/Moose/Exception/CannotAutoDerefWithoutIsa.pm index 49e7edfbf..ab65260ef 100644 --- a/lib/Moose/Exception/CannotAutoDerefWithoutIsa.pm +++ b/lib/Moose/Exception/CannotAutoDerefWithoutIsa.pm @@ -1,5 +1,5 @@ package Moose::Exception::CannotAutoDerefWithoutIsa; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CannotAutoDereferenceTypeConstraint.pm b/lib/Moose/Exception/CannotAutoDereferenceTypeConstraint.pm index 39ab20908..ad57acb12 100644 --- a/lib/Moose/Exception/CannotAutoDereferenceTypeConstraint.pm +++ b/lib/Moose/Exception/CannotAutoDereferenceTypeConstraint.pm @@ -1,5 +1,5 @@ package Moose::Exception::CannotAutoDereferenceTypeConstraint; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CannotCalculateNativeType.pm b/lib/Moose/Exception/CannotCalculateNativeType.pm index 95757b4f2..ad1596c38 100644 --- a/lib/Moose/Exception/CannotCalculateNativeType.pm +++ b/lib/Moose/Exception/CannotCalculateNativeType.pm @@ -1,5 +1,5 @@ package Moose::Exception::CannotCalculateNativeType; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CannotCallAnAbstractBaseMethod.pm b/lib/Moose/Exception/CannotCallAnAbstractBaseMethod.pm index ef7dd68f2..2bea66222 100644 --- a/lib/Moose/Exception/CannotCallAnAbstractBaseMethod.pm +++ b/lib/Moose/Exception/CannotCallAnAbstractBaseMethod.pm @@ -1,5 +1,5 @@ package Moose::Exception::CannotCallAnAbstractBaseMethod; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CannotCallAnAbstractMethod.pm b/lib/Moose/Exception/CannotCallAnAbstractMethod.pm index 205f118ee..3be9d7320 100644 --- a/lib/Moose/Exception/CannotCallAnAbstractMethod.pm +++ b/lib/Moose/Exception/CannotCallAnAbstractMethod.pm @@ -1,5 +1,5 @@ package Moose::Exception::CannotCallAnAbstractMethod; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CannotCoerceAWeakRef.pm b/lib/Moose/Exception/CannotCoerceAWeakRef.pm index 6465f9dad..a4509614d 100644 --- a/lib/Moose/Exception/CannotCoerceAWeakRef.pm +++ b/lib/Moose/Exception/CannotCoerceAWeakRef.pm @@ -1,5 +1,5 @@ package Moose::Exception::CannotCoerceAWeakRef; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CannotCoerceAttributeWhichHasNoCoercion.pm b/lib/Moose/Exception/CannotCoerceAttributeWhichHasNoCoercion.pm index 4f8af7d24..f0f649ae6 100644 --- a/lib/Moose/Exception/CannotCoerceAttributeWhichHasNoCoercion.pm +++ b/lib/Moose/Exception/CannotCoerceAttributeWhichHasNoCoercion.pm @@ -1,5 +1,5 @@ package Moose::Exception::CannotCoerceAttributeWhichHasNoCoercion; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CannotCreateHigherOrderTypeWithoutATypeParameter.pm b/lib/Moose/Exception/CannotCreateHigherOrderTypeWithoutATypeParameter.pm index cec838d08..419d2ee1c 100644 --- a/lib/Moose/Exception/CannotCreateHigherOrderTypeWithoutATypeParameter.pm +++ b/lib/Moose/Exception/CannotCreateHigherOrderTypeWithoutATypeParameter.pm @@ -1,5 +1,5 @@ package Moose::Exception::CannotCreateHigherOrderTypeWithoutATypeParameter; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CannotCreateMethodAliasLocalMethodIsPresent.pm b/lib/Moose/Exception/CannotCreateMethodAliasLocalMethodIsPresent.pm index 9c99944a3..15d9e12ae 100644 --- a/lib/Moose/Exception/CannotCreateMethodAliasLocalMethodIsPresent.pm +++ b/lib/Moose/Exception/CannotCreateMethodAliasLocalMethodIsPresent.pm @@ -1,5 +1,5 @@ package Moose::Exception::CannotCreateMethodAliasLocalMethodIsPresent; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CannotCreateMethodAliasLocalMethodIsPresentInClass.pm b/lib/Moose/Exception/CannotCreateMethodAliasLocalMethodIsPresentInClass.pm index 2f1a0e4f7..2633d59d4 100644 --- a/lib/Moose/Exception/CannotCreateMethodAliasLocalMethodIsPresentInClass.pm +++ b/lib/Moose/Exception/CannotCreateMethodAliasLocalMethodIsPresentInClass.pm @@ -1,5 +1,5 @@ package Moose::Exception::CannotCreateMethodAliasLocalMethodIsPresentInClass; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CannotDelegateLocalMethodIsPresent.pm b/lib/Moose/Exception/CannotDelegateLocalMethodIsPresent.pm index c7cb5f84b..694fd04a8 100644 --- a/lib/Moose/Exception/CannotDelegateLocalMethodIsPresent.pm +++ b/lib/Moose/Exception/CannotDelegateLocalMethodIsPresent.pm @@ -1,5 +1,5 @@ package Moose::Exception::CannotDelegateLocalMethodIsPresent; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CannotDelegateWithoutIsa.pm b/lib/Moose/Exception/CannotDelegateWithoutIsa.pm index 50591e252..1dfd96046 100644 --- a/lib/Moose/Exception/CannotDelegateWithoutIsa.pm +++ b/lib/Moose/Exception/CannotDelegateWithoutIsa.pm @@ -1,5 +1,5 @@ package Moose::Exception::CannotDelegateWithoutIsa; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CannotFindDelegateMetaclass.pm b/lib/Moose/Exception/CannotFindDelegateMetaclass.pm index ca42dd3b6..f4039acd9 100644 --- a/lib/Moose/Exception/CannotFindDelegateMetaclass.pm +++ b/lib/Moose/Exception/CannotFindDelegateMetaclass.pm @@ -1,5 +1,5 @@ package Moose::Exception::CannotFindDelegateMetaclass; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CannotFindType.pm b/lib/Moose/Exception/CannotFindType.pm index 1ef3f76bc..d5f5cbe8c 100644 --- a/lib/Moose/Exception/CannotFindType.pm +++ b/lib/Moose/Exception/CannotFindType.pm @@ -1,5 +1,5 @@ package Moose::Exception::CannotFindType; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CannotFindTypeGivenToMatchOnType.pm b/lib/Moose/Exception/CannotFindTypeGivenToMatchOnType.pm index 61ddf01f4..d7c543cc2 100644 --- a/lib/Moose/Exception/CannotFindTypeGivenToMatchOnType.pm +++ b/lib/Moose/Exception/CannotFindTypeGivenToMatchOnType.pm @@ -1,5 +1,5 @@ package Moose::Exception::CannotFindTypeGivenToMatchOnType; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CannotFixMetaclassCompatibility.pm b/lib/Moose/Exception/CannotFixMetaclassCompatibility.pm index ef8018cc8..1ce423c9a 100644 --- a/lib/Moose/Exception/CannotFixMetaclassCompatibility.pm +++ b/lib/Moose/Exception/CannotFixMetaclassCompatibility.pm @@ -1,5 +1,5 @@ package Moose::Exception::CannotFixMetaclassCompatibility; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CannotGenerateInlineConstraint.pm b/lib/Moose/Exception/CannotGenerateInlineConstraint.pm index eee378f13..b1c64e2bc 100644 --- a/lib/Moose/Exception/CannotGenerateInlineConstraint.pm +++ b/lib/Moose/Exception/CannotGenerateInlineConstraint.pm @@ -1,5 +1,5 @@ package Moose::Exception::CannotGenerateInlineConstraint; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CannotInitializeMooseMetaRoleComposite.pm b/lib/Moose/Exception/CannotInitializeMooseMetaRoleComposite.pm index 58577cfa1..eb12dc016 100644 --- a/lib/Moose/Exception/CannotInitializeMooseMetaRoleComposite.pm +++ b/lib/Moose/Exception/CannotInitializeMooseMetaRoleComposite.pm @@ -1,5 +1,5 @@ package Moose::Exception::CannotInitializeMooseMetaRoleComposite; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CannotInlineTypeConstraintCheck.pm b/lib/Moose/Exception/CannotInlineTypeConstraintCheck.pm index 403145e85..128525e4f 100644 --- a/lib/Moose/Exception/CannotInlineTypeConstraintCheck.pm +++ b/lib/Moose/Exception/CannotInlineTypeConstraintCheck.pm @@ -1,5 +1,5 @@ package Moose::Exception::CannotInlineTypeConstraintCheck; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CannotLocatePackageInINC.pm b/lib/Moose/Exception/CannotLocatePackageInINC.pm index 56a2d87e7..b8b878f26 100644 --- a/lib/Moose/Exception/CannotLocatePackageInINC.pm +++ b/lib/Moose/Exception/CannotLocatePackageInINC.pm @@ -1,5 +1,5 @@ package Moose::Exception::CannotLocatePackageInINC; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CannotMakeMetaclassCompatible.pm b/lib/Moose/Exception/CannotMakeMetaclassCompatible.pm index 936255343..94bb95d6b 100644 --- a/lib/Moose/Exception/CannotMakeMetaclassCompatible.pm +++ b/lib/Moose/Exception/CannotMakeMetaclassCompatible.pm @@ -1,5 +1,5 @@ package Moose::Exception::CannotMakeMetaclassCompatible; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CannotOverrideALocalMethod.pm b/lib/Moose/Exception/CannotOverrideALocalMethod.pm index 1a12ba421..f01983d8c 100644 --- a/lib/Moose/Exception/CannotOverrideALocalMethod.pm +++ b/lib/Moose/Exception/CannotOverrideALocalMethod.pm @@ -1,5 +1,5 @@ package Moose::Exception::CannotOverrideALocalMethod; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CannotOverrideBodyOfMetaMethods.pm b/lib/Moose/Exception/CannotOverrideBodyOfMetaMethods.pm index b1d92e3b2..24f57520d 100644 --- a/lib/Moose/Exception/CannotOverrideBodyOfMetaMethods.pm +++ b/lib/Moose/Exception/CannotOverrideBodyOfMetaMethods.pm @@ -1,5 +1,5 @@ package Moose::Exception::CannotOverrideBodyOfMetaMethods; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CannotOverrideLocalMethodIsPresent.pm b/lib/Moose/Exception/CannotOverrideLocalMethodIsPresent.pm index bc18b152e..6fdf8e601 100644 --- a/lib/Moose/Exception/CannotOverrideLocalMethodIsPresent.pm +++ b/lib/Moose/Exception/CannotOverrideLocalMethodIsPresent.pm @@ -1,5 +1,5 @@ package Moose::Exception::CannotOverrideLocalMethodIsPresent; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CannotOverrideNoSuperMethod.pm b/lib/Moose/Exception/CannotOverrideNoSuperMethod.pm index 8f1f70df0..9776a65e5 100644 --- a/lib/Moose/Exception/CannotOverrideNoSuperMethod.pm +++ b/lib/Moose/Exception/CannotOverrideNoSuperMethod.pm @@ -1,5 +1,5 @@ package Moose::Exception::CannotOverrideNoSuperMethod; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CannotRegisterUnnamedTypeConstraint.pm b/lib/Moose/Exception/CannotRegisterUnnamedTypeConstraint.pm index c5b3a156c..b8b28b1da 100644 --- a/lib/Moose/Exception/CannotRegisterUnnamedTypeConstraint.pm +++ b/lib/Moose/Exception/CannotRegisterUnnamedTypeConstraint.pm @@ -1,5 +1,5 @@ package Moose::Exception::CannotRegisterUnnamedTypeConstraint; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CannotUseLazyBuildAndDefaultSimultaneously.pm b/lib/Moose/Exception/CannotUseLazyBuildAndDefaultSimultaneously.pm index de9293221..59bff11b6 100644 --- a/lib/Moose/Exception/CannotUseLazyBuildAndDefaultSimultaneously.pm +++ b/lib/Moose/Exception/CannotUseLazyBuildAndDefaultSimultaneously.pm @@ -1,5 +1,5 @@ package Moose::Exception::CannotUseLazyBuildAndDefaultSimultaneously; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CircularReferenceInAlso.pm b/lib/Moose/Exception/CircularReferenceInAlso.pm index d6470ff6f..930b7516b 100644 --- a/lib/Moose/Exception/CircularReferenceInAlso.pm +++ b/lib/Moose/Exception/CircularReferenceInAlso.pm @@ -1,5 +1,5 @@ package Moose::Exception::CircularReferenceInAlso; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/ClassDoesNotHaveInitMeta.pm b/lib/Moose/Exception/ClassDoesNotHaveInitMeta.pm index 05ad4ba84..f21f739a9 100644 --- a/lib/Moose/Exception/ClassDoesNotHaveInitMeta.pm +++ b/lib/Moose/Exception/ClassDoesNotHaveInitMeta.pm @@ -1,5 +1,5 @@ package Moose::Exception::ClassDoesNotHaveInitMeta; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/ClassDoesTheExcludedRole.pm b/lib/Moose/Exception/ClassDoesTheExcludedRole.pm index f0797234a..78813c708 100644 --- a/lib/Moose/Exception/ClassDoesTheExcludedRole.pm +++ b/lib/Moose/Exception/ClassDoesTheExcludedRole.pm @@ -1,5 +1,5 @@ package Moose::Exception::ClassDoesTheExcludedRole; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/ClassNamesDoNotMatch.pm b/lib/Moose/Exception/ClassNamesDoNotMatch.pm index 67d1f997a..e0423236d 100644 --- a/lib/Moose/Exception/ClassNamesDoNotMatch.pm +++ b/lib/Moose/Exception/ClassNamesDoNotMatch.pm @@ -1,5 +1,5 @@ package Moose::Exception::ClassNamesDoNotMatch; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CloneObjectExpectsAnInstanceOfMetaclass.pm b/lib/Moose/Exception/CloneObjectExpectsAnInstanceOfMetaclass.pm index babff6ce3..c2e4a5a36 100644 --- a/lib/Moose/Exception/CloneObjectExpectsAnInstanceOfMetaclass.pm +++ b/lib/Moose/Exception/CloneObjectExpectsAnInstanceOfMetaclass.pm @@ -1,5 +1,5 @@ package Moose::Exception::CloneObjectExpectsAnInstanceOfMetaclass; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CodeBlockMustBeACodeRef.pm b/lib/Moose/Exception/CodeBlockMustBeACodeRef.pm index b080afaa4..2bb614410 100644 --- a/lib/Moose/Exception/CodeBlockMustBeACodeRef.pm +++ b/lib/Moose/Exception/CodeBlockMustBeACodeRef.pm @@ -1,5 +1,5 @@ package Moose::Exception::CodeBlockMustBeACodeRef; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CoercingWithoutCoercions.pm b/lib/Moose/Exception/CoercingWithoutCoercions.pm index e8cd7ac73..91fdf390c 100644 --- a/lib/Moose/Exception/CoercingWithoutCoercions.pm +++ b/lib/Moose/Exception/CoercingWithoutCoercions.pm @@ -1,5 +1,5 @@ package Moose::Exception::CoercingWithoutCoercions; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CoercionAlreadyExists.pm b/lib/Moose/Exception/CoercionAlreadyExists.pm index 12a7be36d..53b9bbacc 100644 --- a/lib/Moose/Exception/CoercionAlreadyExists.pm +++ b/lib/Moose/Exception/CoercionAlreadyExists.pm @@ -1,5 +1,5 @@ package Moose::Exception::CoercionAlreadyExists; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CoercionNeedsTypeConstraint.pm b/lib/Moose/Exception/CoercionNeedsTypeConstraint.pm index 713e7baba..b537559bd 100644 --- a/lib/Moose/Exception/CoercionNeedsTypeConstraint.pm +++ b/lib/Moose/Exception/CoercionNeedsTypeConstraint.pm @@ -1,5 +1,5 @@ package Moose::Exception::CoercionNeedsTypeConstraint; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/ConflictDetectedInCheckRoleExclusions.pm b/lib/Moose/Exception/ConflictDetectedInCheckRoleExclusions.pm index e8acfffec..63c095632 100644 --- a/lib/Moose/Exception/ConflictDetectedInCheckRoleExclusions.pm +++ b/lib/Moose/Exception/ConflictDetectedInCheckRoleExclusions.pm @@ -1,5 +1,5 @@ package Moose::Exception::ConflictDetectedInCheckRoleExclusions; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/ConflictDetectedInCheckRoleExclusionsInToClass.pm b/lib/Moose/Exception/ConflictDetectedInCheckRoleExclusionsInToClass.pm index ef591e16a..79c3d0e16 100644 --- a/lib/Moose/Exception/ConflictDetectedInCheckRoleExclusionsInToClass.pm +++ b/lib/Moose/Exception/ConflictDetectedInCheckRoleExclusionsInToClass.pm @@ -1,5 +1,5 @@ package Moose::Exception::ConflictDetectedInCheckRoleExclusionsInToClass; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/ConstructClassInstanceTakesPackageName.pm b/lib/Moose/Exception/ConstructClassInstanceTakesPackageName.pm index 33c275f8b..eddacc81f 100644 --- a/lib/Moose/Exception/ConstructClassInstanceTakesPackageName.pm +++ b/lib/Moose/Exception/ConstructClassInstanceTakesPackageName.pm @@ -1,5 +1,5 @@ package Moose::Exception::ConstructClassInstanceTakesPackageName; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CouldNotCreateMethod.pm b/lib/Moose/Exception/CouldNotCreateMethod.pm index c9cbc22a5..42d71f0aa 100644 --- a/lib/Moose/Exception/CouldNotCreateMethod.pm +++ b/lib/Moose/Exception/CouldNotCreateMethod.pm @@ -1,5 +1,5 @@ package Moose::Exception::CouldNotCreateMethod; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CouldNotCreateWriter.pm b/lib/Moose/Exception/CouldNotCreateWriter.pm index a4479b518..2e82d39aa 100644 --- a/lib/Moose/Exception/CouldNotCreateWriter.pm +++ b/lib/Moose/Exception/CouldNotCreateWriter.pm @@ -1,5 +1,5 @@ package Moose::Exception::CouldNotCreateWriter; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CouldNotEvalConstructor.pm b/lib/Moose/Exception/CouldNotEvalConstructor.pm index b8f138311..52a9f9e74 100644 --- a/lib/Moose/Exception/CouldNotEvalConstructor.pm +++ b/lib/Moose/Exception/CouldNotEvalConstructor.pm @@ -1,5 +1,5 @@ package Moose::Exception::CouldNotEvalConstructor; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CouldNotEvalDestructor.pm b/lib/Moose/Exception/CouldNotEvalDestructor.pm index 89b27031d..a3c510d93 100644 --- a/lib/Moose/Exception/CouldNotEvalDestructor.pm +++ b/lib/Moose/Exception/CouldNotEvalDestructor.pm @@ -1,5 +1,5 @@ package Moose::Exception::CouldNotEvalDestructor; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CouldNotFindTypeConstraintToCoerceFrom.pm b/lib/Moose/Exception/CouldNotFindTypeConstraintToCoerceFrom.pm index cdd86ae91..4c1f8af44 100644 --- a/lib/Moose/Exception/CouldNotFindTypeConstraintToCoerceFrom.pm +++ b/lib/Moose/Exception/CouldNotFindTypeConstraintToCoerceFrom.pm @@ -1,5 +1,5 @@ package Moose::Exception::CouldNotFindTypeConstraintToCoerceFrom; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CouldNotGenerateInlineAttributeMethod.pm b/lib/Moose/Exception/CouldNotGenerateInlineAttributeMethod.pm index 797a82aea..5a55d444a 100644 --- a/lib/Moose/Exception/CouldNotGenerateInlineAttributeMethod.pm +++ b/lib/Moose/Exception/CouldNotGenerateInlineAttributeMethod.pm @@ -1,5 +1,5 @@ package Moose::Exception::CouldNotGenerateInlineAttributeMethod; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CouldNotLocateTypeConstraintForUnion.pm b/lib/Moose/Exception/CouldNotLocateTypeConstraintForUnion.pm index e32d6e54c..bdddd71af 100644 --- a/lib/Moose/Exception/CouldNotLocateTypeConstraintForUnion.pm +++ b/lib/Moose/Exception/CouldNotLocateTypeConstraintForUnion.pm @@ -1,5 +1,5 @@ package Moose::Exception::CouldNotLocateTypeConstraintForUnion; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CouldNotParseType.pm b/lib/Moose/Exception/CouldNotParseType.pm index 826b0393b..b5a3ba3bb 100644 --- a/lib/Moose/Exception/CouldNotParseType.pm +++ b/lib/Moose/Exception/CouldNotParseType.pm @@ -1,5 +1,5 @@ package Moose::Exception::CouldNotParseType; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CreateMOPClassTakesArrayRefOfAttributes.pm b/lib/Moose/Exception/CreateMOPClassTakesArrayRefOfAttributes.pm index 51419cb3c..2f9f9c4d3 100644 --- a/lib/Moose/Exception/CreateMOPClassTakesArrayRefOfAttributes.pm +++ b/lib/Moose/Exception/CreateMOPClassTakesArrayRefOfAttributes.pm @@ -1,5 +1,5 @@ package Moose::Exception::CreateMOPClassTakesArrayRefOfAttributes; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CreateMOPClassTakesArrayRefOfSuperclasses.pm b/lib/Moose/Exception/CreateMOPClassTakesArrayRefOfSuperclasses.pm index 7b47c8b1c..dcdca7146 100644 --- a/lib/Moose/Exception/CreateMOPClassTakesArrayRefOfSuperclasses.pm +++ b/lib/Moose/Exception/CreateMOPClassTakesArrayRefOfSuperclasses.pm @@ -1,5 +1,5 @@ package Moose::Exception::CreateMOPClassTakesArrayRefOfSuperclasses; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CreateMOPClassTakesHashRefOfMethods.pm b/lib/Moose/Exception/CreateMOPClassTakesHashRefOfMethods.pm index 878235b12..488a9cc53 100644 --- a/lib/Moose/Exception/CreateMOPClassTakesHashRefOfMethods.pm +++ b/lib/Moose/Exception/CreateMOPClassTakesHashRefOfMethods.pm @@ -1,5 +1,5 @@ package Moose::Exception::CreateMOPClassTakesHashRefOfMethods; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CreateTakesArrayRefOfRoles.pm b/lib/Moose/Exception/CreateTakesArrayRefOfRoles.pm index ec308eebf..59accb9c3 100644 --- a/lib/Moose/Exception/CreateTakesArrayRefOfRoles.pm +++ b/lib/Moose/Exception/CreateTakesArrayRefOfRoles.pm @@ -1,5 +1,5 @@ package Moose::Exception::CreateTakesArrayRefOfRoles; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CreateTakesHashRefOfAttributes.pm b/lib/Moose/Exception/CreateTakesHashRefOfAttributes.pm index f19b985e9..fae40ba7f 100644 --- a/lib/Moose/Exception/CreateTakesHashRefOfAttributes.pm +++ b/lib/Moose/Exception/CreateTakesHashRefOfAttributes.pm @@ -1,5 +1,5 @@ package Moose::Exception::CreateTakesHashRefOfAttributes; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/CreateTakesHashRefOfMethods.pm b/lib/Moose/Exception/CreateTakesHashRefOfMethods.pm index 58de784fb..f6c6ad607 100644 --- a/lib/Moose/Exception/CreateTakesHashRefOfMethods.pm +++ b/lib/Moose/Exception/CreateTakesHashRefOfMethods.pm @@ -1,5 +1,5 @@ package Moose::Exception::CreateTakesHashRefOfMethods; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/DefaultToMatchOnTypeMustBeCodeRef.pm b/lib/Moose/Exception/DefaultToMatchOnTypeMustBeCodeRef.pm index b875d01a5..5a87ca404 100644 --- a/lib/Moose/Exception/DefaultToMatchOnTypeMustBeCodeRef.pm +++ b/lib/Moose/Exception/DefaultToMatchOnTypeMustBeCodeRef.pm @@ -1,5 +1,5 @@ package Moose::Exception::DefaultToMatchOnTypeMustBeCodeRef; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/DelegationToAClassWhichIsNotLoaded.pm b/lib/Moose/Exception/DelegationToAClassWhichIsNotLoaded.pm index 4720a7f9e..90a37a995 100644 --- a/lib/Moose/Exception/DelegationToAClassWhichIsNotLoaded.pm +++ b/lib/Moose/Exception/DelegationToAClassWhichIsNotLoaded.pm @@ -1,5 +1,5 @@ package Moose::Exception::DelegationToAClassWhichIsNotLoaded; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/DelegationToARoleWhichIsNotLoaded.pm b/lib/Moose/Exception/DelegationToARoleWhichIsNotLoaded.pm index 71405e365..d90ebe358 100644 --- a/lib/Moose/Exception/DelegationToARoleWhichIsNotLoaded.pm +++ b/lib/Moose/Exception/DelegationToARoleWhichIsNotLoaded.pm @@ -1,5 +1,5 @@ package Moose::Exception::DelegationToARoleWhichIsNotLoaded; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/DelegationToATypeWhichIsNotAClass.pm b/lib/Moose/Exception/DelegationToATypeWhichIsNotAClass.pm index b77e832e3..b3f37cf0a 100644 --- a/lib/Moose/Exception/DelegationToATypeWhichIsNotAClass.pm +++ b/lib/Moose/Exception/DelegationToATypeWhichIsNotAClass.pm @@ -1,5 +1,5 @@ package Moose::Exception::DelegationToATypeWhichIsNotAClass; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/DoesRequiresRoleName.pm b/lib/Moose/Exception/DoesRequiresRoleName.pm index 50eff9fa1..c1def8e6f 100644 --- a/lib/Moose/Exception/DoesRequiresRoleName.pm +++ b/lib/Moose/Exception/DoesRequiresRoleName.pm @@ -1,5 +1,5 @@ package Moose::Exception::DoesRequiresRoleName; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/EnumCalledWithAnArrayRefAndAdditionalArgs.pm b/lib/Moose/Exception/EnumCalledWithAnArrayRefAndAdditionalArgs.pm index fbbc5a099..416cedd9c 100644 --- a/lib/Moose/Exception/EnumCalledWithAnArrayRefAndAdditionalArgs.pm +++ b/lib/Moose/Exception/EnumCalledWithAnArrayRefAndAdditionalArgs.pm @@ -1,5 +1,5 @@ package Moose::Exception::EnumCalledWithAnArrayRefAndAdditionalArgs; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/EnumValuesMustBeString.pm b/lib/Moose/Exception/EnumValuesMustBeString.pm index 24ce4c724..62eea5c0c 100644 --- a/lib/Moose/Exception/EnumValuesMustBeString.pm +++ b/lib/Moose/Exception/EnumValuesMustBeString.pm @@ -1,5 +1,5 @@ package Moose::Exception::EnumValuesMustBeString; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/ExtendsMissingArgs.pm b/lib/Moose/Exception/ExtendsMissingArgs.pm index 8237acc0f..f994d9024 100644 --- a/lib/Moose/Exception/ExtendsMissingArgs.pm +++ b/lib/Moose/Exception/ExtendsMissingArgs.pm @@ -1,5 +1,5 @@ package Moose::Exception::ExtendsMissingArgs; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/HandlesMustBeAHashRef.pm b/lib/Moose/Exception/HandlesMustBeAHashRef.pm index 2cabcd9bf..99dbd6c88 100644 --- a/lib/Moose/Exception/HandlesMustBeAHashRef.pm +++ b/lib/Moose/Exception/HandlesMustBeAHashRef.pm @@ -1,5 +1,5 @@ package Moose::Exception::HandlesMustBeAHashRef; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/IllegalInheritedOptions.pm b/lib/Moose/Exception/IllegalInheritedOptions.pm index c306c187b..f36f71178 100644 --- a/lib/Moose/Exception/IllegalInheritedOptions.pm +++ b/lib/Moose/Exception/IllegalInheritedOptions.pm @@ -1,5 +1,5 @@ package Moose::Exception::IllegalInheritedOptions; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/IllegalMethodTypeToAddMethodModifier.pm b/lib/Moose/Exception/IllegalMethodTypeToAddMethodModifier.pm index e412f2eaf..439ce204f 100644 --- a/lib/Moose/Exception/IllegalMethodTypeToAddMethodModifier.pm +++ b/lib/Moose/Exception/IllegalMethodTypeToAddMethodModifier.pm @@ -1,5 +1,5 @@ package Moose::Exception::IllegalMethodTypeToAddMethodModifier; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/IncompatibleMetaclassOfSuperclass.pm b/lib/Moose/Exception/IncompatibleMetaclassOfSuperclass.pm index 035bba91d..ae8490d82 100644 --- a/lib/Moose/Exception/IncompatibleMetaclassOfSuperclass.pm +++ b/lib/Moose/Exception/IncompatibleMetaclassOfSuperclass.pm @@ -1,5 +1,5 @@ package Moose::Exception::IncompatibleMetaclassOfSuperclass; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/InitMetaRequiresClass.pm b/lib/Moose/Exception/InitMetaRequiresClass.pm index b0555c750..8a33676d5 100644 --- a/lib/Moose/Exception/InitMetaRequiresClass.pm +++ b/lib/Moose/Exception/InitMetaRequiresClass.pm @@ -1,5 +1,5 @@ package Moose::Exception::InitMetaRequiresClass; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/InitializeTakesUnBlessedPackageName.pm b/lib/Moose/Exception/InitializeTakesUnBlessedPackageName.pm index 2c34c46bc..462b3737c 100644 --- a/lib/Moose/Exception/InitializeTakesUnBlessedPackageName.pm +++ b/lib/Moose/Exception/InitializeTakesUnBlessedPackageName.pm @@ -1,5 +1,5 @@ package Moose::Exception::InitializeTakesUnBlessedPackageName; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/InstanceBlessedIntoWrongClass.pm b/lib/Moose/Exception/InstanceBlessedIntoWrongClass.pm index ff5d8ab48..4b2efafdb 100644 --- a/lib/Moose/Exception/InstanceBlessedIntoWrongClass.pm +++ b/lib/Moose/Exception/InstanceBlessedIntoWrongClass.pm @@ -1,5 +1,5 @@ package Moose::Exception::InstanceBlessedIntoWrongClass; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/InstanceMustBeABlessedReference.pm b/lib/Moose/Exception/InstanceMustBeABlessedReference.pm index f0fecc744..cf15c88db 100644 --- a/lib/Moose/Exception/InstanceMustBeABlessedReference.pm +++ b/lib/Moose/Exception/InstanceMustBeABlessedReference.pm @@ -1,5 +1,5 @@ package Moose::Exception::InstanceMustBeABlessedReference; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/InvalidArgPassedToMooseUtilMetaRole.pm b/lib/Moose/Exception/InvalidArgPassedToMooseUtilMetaRole.pm index aed2b4eeb..7ba38e4ba 100644 --- a/lib/Moose/Exception/InvalidArgPassedToMooseUtilMetaRole.pm +++ b/lib/Moose/Exception/InvalidArgPassedToMooseUtilMetaRole.pm @@ -1,5 +1,5 @@ package Moose::Exception::InvalidArgPassedToMooseUtilMetaRole; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/InvalidArgumentToMethod.pm b/lib/Moose/Exception/InvalidArgumentToMethod.pm index 0861c49a2..b51edd733 100644 --- a/lib/Moose/Exception/InvalidArgumentToMethod.pm +++ b/lib/Moose/Exception/InvalidArgumentToMethod.pm @@ -1,5 +1,5 @@ package Moose::Exception::InvalidArgumentToMethod; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/InvalidArgumentsToTraitAliases.pm b/lib/Moose/Exception/InvalidArgumentsToTraitAliases.pm index c1787fca7..2cd42cee9 100644 --- a/lib/Moose/Exception/InvalidArgumentsToTraitAliases.pm +++ b/lib/Moose/Exception/InvalidArgumentsToTraitAliases.pm @@ -1,5 +1,5 @@ package Moose::Exception::InvalidArgumentsToTraitAliases; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/InvalidBaseTypeGivenToCreateParameterizedTypeConstraint.pm b/lib/Moose/Exception/InvalidBaseTypeGivenToCreateParameterizedTypeConstraint.pm index eff4f3851..3cfee2f91 100644 --- a/lib/Moose/Exception/InvalidBaseTypeGivenToCreateParameterizedTypeConstraint.pm +++ b/lib/Moose/Exception/InvalidBaseTypeGivenToCreateParameterizedTypeConstraint.pm @@ -1,5 +1,5 @@ package Moose::Exception::InvalidBaseTypeGivenToCreateParameterizedTypeConstraint; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/InvalidHandleValue.pm b/lib/Moose/Exception/InvalidHandleValue.pm index bbaafdc4a..09ee9ee22 100644 --- a/lib/Moose/Exception/InvalidHandleValue.pm +++ b/lib/Moose/Exception/InvalidHandleValue.pm @@ -1,5 +1,5 @@ package Moose::Exception::InvalidHandleValue; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/InvalidHasProvidedInARole.pm b/lib/Moose/Exception/InvalidHasProvidedInARole.pm index b58fe6d87..97fe5c410 100644 --- a/lib/Moose/Exception/InvalidHasProvidedInARole.pm +++ b/lib/Moose/Exception/InvalidHasProvidedInARole.pm @@ -1,5 +1,5 @@ package Moose::Exception::InvalidHasProvidedInARole; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/InvalidNameForType.pm b/lib/Moose/Exception/InvalidNameForType.pm index 786ece8c6..43ced409b 100644 --- a/lib/Moose/Exception/InvalidNameForType.pm +++ b/lib/Moose/Exception/InvalidNameForType.pm @@ -1,5 +1,5 @@ package Moose::Exception::InvalidNameForType; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/InvalidOverloadOperator.pm b/lib/Moose/Exception/InvalidOverloadOperator.pm index 282d68e71..ca287a250 100644 --- a/lib/Moose/Exception/InvalidOverloadOperator.pm +++ b/lib/Moose/Exception/InvalidOverloadOperator.pm @@ -1,5 +1,5 @@ package Moose::Exception::InvalidOverloadOperator; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/InvalidRoleApplication.pm b/lib/Moose/Exception/InvalidRoleApplication.pm index 463dd82aa..ca1d5cb0c 100644 --- a/lib/Moose/Exception/InvalidRoleApplication.pm +++ b/lib/Moose/Exception/InvalidRoleApplication.pm @@ -1,5 +1,5 @@ package Moose::Exception::InvalidRoleApplication; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/InvalidTypeConstraint.pm b/lib/Moose/Exception/InvalidTypeConstraint.pm index f44e2136b..42666b294 100644 --- a/lib/Moose/Exception/InvalidTypeConstraint.pm +++ b/lib/Moose/Exception/InvalidTypeConstraint.pm @@ -1,5 +1,5 @@ package Moose::Exception::InvalidTypeConstraint; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/InvalidTypeGivenToCreateParameterizedTypeConstraint.pm b/lib/Moose/Exception/InvalidTypeGivenToCreateParameterizedTypeConstraint.pm index ac53467cf..77e91c568 100644 --- a/lib/Moose/Exception/InvalidTypeGivenToCreateParameterizedTypeConstraint.pm +++ b/lib/Moose/Exception/InvalidTypeGivenToCreateParameterizedTypeConstraint.pm @@ -1,5 +1,5 @@ package Moose::Exception::InvalidTypeGivenToCreateParameterizedTypeConstraint; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/InvalidValueForIs.pm b/lib/Moose/Exception/InvalidValueForIs.pm index 2e69d0f14..8b5dd2750 100644 --- a/lib/Moose/Exception/InvalidValueForIs.pm +++ b/lib/Moose/Exception/InvalidValueForIs.pm @@ -1,5 +1,5 @@ package Moose::Exception::InvalidValueForIs; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/IsaDoesNotDoTheRole.pm b/lib/Moose/Exception/IsaDoesNotDoTheRole.pm index 79bc4d928..7bb0ff837 100644 --- a/lib/Moose/Exception/IsaDoesNotDoTheRole.pm +++ b/lib/Moose/Exception/IsaDoesNotDoTheRole.pm @@ -1,5 +1,5 @@ package Moose::Exception::IsaDoesNotDoTheRole; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/IsaLacksDoesMethod.pm b/lib/Moose/Exception/IsaLacksDoesMethod.pm index edb5cfa87..8fd48920d 100644 --- a/lib/Moose/Exception/IsaLacksDoesMethod.pm +++ b/lib/Moose/Exception/IsaLacksDoesMethod.pm @@ -1,5 +1,5 @@ package Moose::Exception::IsaLacksDoesMethod; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/LazyAttributeNeedsADefault.pm b/lib/Moose/Exception/LazyAttributeNeedsADefault.pm index 916aa8664..cecfbaf03 100644 --- a/lib/Moose/Exception/LazyAttributeNeedsADefault.pm +++ b/lib/Moose/Exception/LazyAttributeNeedsADefault.pm @@ -1,5 +1,5 @@ package Moose::Exception::LazyAttributeNeedsADefault; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/Legacy.pm b/lib/Moose/Exception/Legacy.pm index 81dd83235..327519d87 100644 --- a/lib/Moose/Exception/Legacy.pm +++ b/lib/Moose/Exception/Legacy.pm @@ -1,5 +1,5 @@ package Moose::Exception::Legacy; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/MOPAttributeNewNeedsAttributeName.pm b/lib/Moose/Exception/MOPAttributeNewNeedsAttributeName.pm index 115863829..104283adc 100644 --- a/lib/Moose/Exception/MOPAttributeNewNeedsAttributeName.pm +++ b/lib/Moose/Exception/MOPAttributeNewNeedsAttributeName.pm @@ -1,5 +1,5 @@ package Moose::Exception::MOPAttributeNewNeedsAttributeName; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/MatchActionMustBeACodeRef.pm b/lib/Moose/Exception/MatchActionMustBeACodeRef.pm index 41639906d..3250ad251 100644 --- a/lib/Moose/Exception/MatchActionMustBeACodeRef.pm +++ b/lib/Moose/Exception/MatchActionMustBeACodeRef.pm @@ -1,5 +1,5 @@ package Moose::Exception::MatchActionMustBeACodeRef; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/MessageParameterMustBeCodeRef.pm b/lib/Moose/Exception/MessageParameterMustBeCodeRef.pm index ca246e257..517950791 100644 --- a/lib/Moose/Exception/MessageParameterMustBeCodeRef.pm +++ b/lib/Moose/Exception/MessageParameterMustBeCodeRef.pm @@ -1,5 +1,5 @@ package Moose::Exception::MessageParameterMustBeCodeRef; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/MetaclassIsAClassNotASubclassOfGivenMetaclass.pm b/lib/Moose/Exception/MetaclassIsAClassNotASubclassOfGivenMetaclass.pm index c08c5cd6e..8175febd1 100644 --- a/lib/Moose/Exception/MetaclassIsAClassNotASubclassOfGivenMetaclass.pm +++ b/lib/Moose/Exception/MetaclassIsAClassNotASubclassOfGivenMetaclass.pm @@ -1,5 +1,5 @@ package Moose::Exception::MetaclassIsAClassNotASubclassOfGivenMetaclass; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/MetaclassIsARoleNotASubclassOfGivenMetaclass.pm b/lib/Moose/Exception/MetaclassIsARoleNotASubclassOfGivenMetaclass.pm index fcb33b006..b14bb27a4 100644 --- a/lib/Moose/Exception/MetaclassIsARoleNotASubclassOfGivenMetaclass.pm +++ b/lib/Moose/Exception/MetaclassIsARoleNotASubclassOfGivenMetaclass.pm @@ -1,5 +1,5 @@ package Moose::Exception::MetaclassIsARoleNotASubclassOfGivenMetaclass; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/MetaclassIsNotASubclassOfGivenMetaclass.pm b/lib/Moose/Exception/MetaclassIsNotASubclassOfGivenMetaclass.pm index 49204af49..873ac2fab 100644 --- a/lib/Moose/Exception/MetaclassIsNotASubclassOfGivenMetaclass.pm +++ b/lib/Moose/Exception/MetaclassIsNotASubclassOfGivenMetaclass.pm @@ -1,5 +1,5 @@ package Moose::Exception::MetaclassIsNotASubclassOfGivenMetaclass; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/MetaclassMustBeASubclassOfMooseMetaClass.pm b/lib/Moose/Exception/MetaclassMustBeASubclassOfMooseMetaClass.pm index 7c05c6049..59d193e71 100644 --- a/lib/Moose/Exception/MetaclassMustBeASubclassOfMooseMetaClass.pm +++ b/lib/Moose/Exception/MetaclassMustBeASubclassOfMooseMetaClass.pm @@ -1,5 +1,5 @@ package Moose::Exception::MetaclassMustBeASubclassOfMooseMetaClass; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/MetaclassMustBeASubclassOfMooseMetaRole.pm b/lib/Moose/Exception/MetaclassMustBeASubclassOfMooseMetaRole.pm index 036d88917..39029e939 100644 --- a/lib/Moose/Exception/MetaclassMustBeASubclassOfMooseMetaRole.pm +++ b/lib/Moose/Exception/MetaclassMustBeASubclassOfMooseMetaRole.pm @@ -1,5 +1,5 @@ package Moose::Exception::MetaclassMustBeASubclassOfMooseMetaRole; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/MetaclassMustBeDerivedFromClassMOPClass.pm b/lib/Moose/Exception/MetaclassMustBeDerivedFromClassMOPClass.pm index 1376d8e1a..1fafc9317 100644 --- a/lib/Moose/Exception/MetaclassMustBeDerivedFromClassMOPClass.pm +++ b/lib/Moose/Exception/MetaclassMustBeDerivedFromClassMOPClass.pm @@ -1,5 +1,5 @@ package Moose::Exception::MetaclassMustBeDerivedFromClassMOPClass; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/MetaclassNotLoaded.pm b/lib/Moose/Exception/MetaclassNotLoaded.pm index 4803e2490..8db6ec6d3 100644 --- a/lib/Moose/Exception/MetaclassNotLoaded.pm +++ b/lib/Moose/Exception/MetaclassNotLoaded.pm @@ -1,5 +1,5 @@ package Moose::Exception::MetaclassNotLoaded; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/MetaclassTypeIncompatible.pm b/lib/Moose/Exception/MetaclassTypeIncompatible.pm index bcd36aa2c..7845e771e 100644 --- a/lib/Moose/Exception/MetaclassTypeIncompatible.pm +++ b/lib/Moose/Exception/MetaclassTypeIncompatible.pm @@ -1,5 +1,5 @@ package Moose::Exception::MetaclassTypeIncompatible; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/MethodExpectedAMetaclassObject.pm b/lib/Moose/Exception/MethodExpectedAMetaclassObject.pm index db1ffe9b9..3f387cb23 100644 --- a/lib/Moose/Exception/MethodExpectedAMetaclassObject.pm +++ b/lib/Moose/Exception/MethodExpectedAMetaclassObject.pm @@ -1,5 +1,5 @@ package Moose::Exception::MethodExpectedAMetaclassObject; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/MethodExpectsFewerArgs.pm b/lib/Moose/Exception/MethodExpectsFewerArgs.pm index e91f4f002..98c37ce63 100644 --- a/lib/Moose/Exception/MethodExpectsFewerArgs.pm +++ b/lib/Moose/Exception/MethodExpectsFewerArgs.pm @@ -1,5 +1,5 @@ package Moose::Exception::MethodExpectsFewerArgs; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/MethodExpectsMoreArgs.pm b/lib/Moose/Exception/MethodExpectsMoreArgs.pm index fe93b43ed..9e33edda7 100644 --- a/lib/Moose/Exception/MethodExpectsMoreArgs.pm +++ b/lib/Moose/Exception/MethodExpectsMoreArgs.pm @@ -1,5 +1,5 @@ package Moose::Exception::MethodExpectsMoreArgs; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/MethodModifierNeedsMethodName.pm b/lib/Moose/Exception/MethodModifierNeedsMethodName.pm index 8864c89c9..1d4eb2a95 100644 --- a/lib/Moose/Exception/MethodModifierNeedsMethodName.pm +++ b/lib/Moose/Exception/MethodModifierNeedsMethodName.pm @@ -1,5 +1,5 @@ package Moose::Exception::MethodModifierNeedsMethodName; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/MethodNameConflictInRoles.pm b/lib/Moose/Exception/MethodNameConflictInRoles.pm index edb945aec..5e403a66c 100644 --- a/lib/Moose/Exception/MethodNameConflictInRoles.pm +++ b/lib/Moose/Exception/MethodNameConflictInRoles.pm @@ -1,5 +1,5 @@ package Moose::Exception::MethodNameConflictInRoles; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/MethodNameNotFoundInInheritanceHierarchy.pm b/lib/Moose/Exception/MethodNameNotFoundInInheritanceHierarchy.pm index d9e117919..b7c6892db 100644 --- a/lib/Moose/Exception/MethodNameNotFoundInInheritanceHierarchy.pm +++ b/lib/Moose/Exception/MethodNameNotFoundInInheritanceHierarchy.pm @@ -1,5 +1,5 @@ package Moose::Exception::MethodNameNotFoundInInheritanceHierarchy; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/MethodNameNotGiven.pm b/lib/Moose/Exception/MethodNameNotGiven.pm index 9964a9073..99d49acc2 100644 --- a/lib/Moose/Exception/MethodNameNotGiven.pm +++ b/lib/Moose/Exception/MethodNameNotGiven.pm @@ -1,5 +1,5 @@ package Moose::Exception::MethodNameNotGiven; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/MustDefineAMethodName.pm b/lib/Moose/Exception/MustDefineAMethodName.pm index f297e3574..cef126edf 100644 --- a/lib/Moose/Exception/MustDefineAMethodName.pm +++ b/lib/Moose/Exception/MustDefineAMethodName.pm @@ -1,5 +1,5 @@ package Moose::Exception::MustDefineAMethodName; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/MustDefineAnAttributeName.pm b/lib/Moose/Exception/MustDefineAnAttributeName.pm index 4d09178e4..60d7ebeb5 100644 --- a/lib/Moose/Exception/MustDefineAnAttributeName.pm +++ b/lib/Moose/Exception/MustDefineAnAttributeName.pm @@ -1,5 +1,5 @@ package Moose::Exception::MustDefineAnAttributeName; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/MustDefineAnOverloadOperator.pm b/lib/Moose/Exception/MustDefineAnOverloadOperator.pm index c70eacf39..e2122d38a 100644 --- a/lib/Moose/Exception/MustDefineAnOverloadOperator.pm +++ b/lib/Moose/Exception/MustDefineAnOverloadOperator.pm @@ -1,5 +1,5 @@ package Moose::Exception::MustDefineAnOverloadOperator; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/MustHaveAtLeastOneValueToEnumerate.pm b/lib/Moose/Exception/MustHaveAtLeastOneValueToEnumerate.pm index 04b3d414d..7b6cb76fc 100644 --- a/lib/Moose/Exception/MustHaveAtLeastOneValueToEnumerate.pm +++ b/lib/Moose/Exception/MustHaveAtLeastOneValueToEnumerate.pm @@ -1,5 +1,5 @@ package Moose::Exception::MustHaveAtLeastOneValueToEnumerate; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/MustPassAHashOfOptions.pm b/lib/Moose/Exception/MustPassAHashOfOptions.pm index da36c797e..82c1871a1 100644 --- a/lib/Moose/Exception/MustPassAHashOfOptions.pm +++ b/lib/Moose/Exception/MustPassAHashOfOptions.pm @@ -1,5 +1,5 @@ package Moose::Exception::MustPassAHashOfOptions; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/MustPassAMooseMetaRoleInstanceOrSubclass.pm b/lib/Moose/Exception/MustPassAMooseMetaRoleInstanceOrSubclass.pm index c7801fdae..b1d37fdc7 100644 --- a/lib/Moose/Exception/MustPassAMooseMetaRoleInstanceOrSubclass.pm +++ b/lib/Moose/Exception/MustPassAMooseMetaRoleInstanceOrSubclass.pm @@ -1,5 +1,5 @@ package Moose::Exception::MustPassAMooseMetaRoleInstanceOrSubclass; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/MustPassAPackageNameOrAnExistingClassMOPPackageInstance.pm b/lib/Moose/Exception/MustPassAPackageNameOrAnExistingClassMOPPackageInstance.pm index 58b164579..640f6a377 100644 --- a/lib/Moose/Exception/MustPassAPackageNameOrAnExistingClassMOPPackageInstance.pm +++ b/lib/Moose/Exception/MustPassAPackageNameOrAnExistingClassMOPPackageInstance.pm @@ -1,5 +1,5 @@ package Moose::Exception::MustPassAPackageNameOrAnExistingClassMOPPackageInstance; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/MustPassEvenNumberOfArguments.pm b/lib/Moose/Exception/MustPassEvenNumberOfArguments.pm index bd0ebaddf..25cf1263b 100644 --- a/lib/Moose/Exception/MustPassEvenNumberOfArguments.pm +++ b/lib/Moose/Exception/MustPassEvenNumberOfArguments.pm @@ -1,5 +1,5 @@ package Moose::Exception::MustPassEvenNumberOfArguments; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/MustPassEvenNumberOfAttributeOptions.pm b/lib/Moose/Exception/MustPassEvenNumberOfAttributeOptions.pm index efd4e3138..3c6b6a17f 100644 --- a/lib/Moose/Exception/MustPassEvenNumberOfAttributeOptions.pm +++ b/lib/Moose/Exception/MustPassEvenNumberOfAttributeOptions.pm @@ -1,5 +1,5 @@ package Moose::Exception::MustPassEvenNumberOfAttributeOptions; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/MustProvideANameForTheAttribute.pm b/lib/Moose/Exception/MustProvideANameForTheAttribute.pm index 44219aba6..d0a33b1d8 100644 --- a/lib/Moose/Exception/MustProvideANameForTheAttribute.pm +++ b/lib/Moose/Exception/MustProvideANameForTheAttribute.pm @@ -1,5 +1,5 @@ package Moose::Exception::MustProvideANameForTheAttribute; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/MustSpecifyAtleastOneMethod.pm b/lib/Moose/Exception/MustSpecifyAtleastOneMethod.pm index fe5007da6..539ddeb91 100644 --- a/lib/Moose/Exception/MustSpecifyAtleastOneMethod.pm +++ b/lib/Moose/Exception/MustSpecifyAtleastOneMethod.pm @@ -1,5 +1,5 @@ package Moose::Exception::MustSpecifyAtleastOneMethod; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/MustSpecifyAtleastOneRole.pm b/lib/Moose/Exception/MustSpecifyAtleastOneRole.pm index fdff5129f..933fae009 100644 --- a/lib/Moose/Exception/MustSpecifyAtleastOneRole.pm +++ b/lib/Moose/Exception/MustSpecifyAtleastOneRole.pm @@ -1,5 +1,5 @@ package Moose::Exception::MustSpecifyAtleastOneRole; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/MustSpecifyAtleastOneRoleToApplicant.pm b/lib/Moose/Exception/MustSpecifyAtleastOneRoleToApplicant.pm index 6fa1584b1..fb216a32a 100644 --- a/lib/Moose/Exception/MustSpecifyAtleastOneRoleToApplicant.pm +++ b/lib/Moose/Exception/MustSpecifyAtleastOneRoleToApplicant.pm @@ -1,5 +1,5 @@ package Moose::Exception::MustSpecifyAtleastOneRoleToApplicant; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/MustSupplyAClassMOPAttributeInstance.pm b/lib/Moose/Exception/MustSupplyAClassMOPAttributeInstance.pm index 58350c063..ca9547023 100644 --- a/lib/Moose/Exception/MustSupplyAClassMOPAttributeInstance.pm +++ b/lib/Moose/Exception/MustSupplyAClassMOPAttributeInstance.pm @@ -1,5 +1,5 @@ package Moose::Exception::MustSupplyAClassMOPAttributeInstance; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/MustSupplyADelegateToMethod.pm b/lib/Moose/Exception/MustSupplyADelegateToMethod.pm index 796cf9fa5..456d5f2d4 100644 --- a/lib/Moose/Exception/MustSupplyADelegateToMethod.pm +++ b/lib/Moose/Exception/MustSupplyADelegateToMethod.pm @@ -1,5 +1,5 @@ package Moose::Exception::MustSupplyADelegateToMethod; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/MustSupplyAMetaclass.pm b/lib/Moose/Exception/MustSupplyAMetaclass.pm index 6a2ce0150..d58e36fe0 100644 --- a/lib/Moose/Exception/MustSupplyAMetaclass.pm +++ b/lib/Moose/Exception/MustSupplyAMetaclass.pm @@ -1,5 +1,5 @@ package Moose::Exception::MustSupplyAMetaclass; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/MustSupplyAMooseMetaAttributeInstance.pm b/lib/Moose/Exception/MustSupplyAMooseMetaAttributeInstance.pm index 5064e2867..3d1fb91ef 100644 --- a/lib/Moose/Exception/MustSupplyAMooseMetaAttributeInstance.pm +++ b/lib/Moose/Exception/MustSupplyAMooseMetaAttributeInstance.pm @@ -1,5 +1,5 @@ package Moose::Exception::MustSupplyAMooseMetaAttributeInstance; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/MustSupplyAnAccessorTypeToConstructWith.pm b/lib/Moose/Exception/MustSupplyAnAccessorTypeToConstructWith.pm index 75892af97..d06f9b2a4 100644 --- a/lib/Moose/Exception/MustSupplyAnAccessorTypeToConstructWith.pm +++ b/lib/Moose/Exception/MustSupplyAnAccessorTypeToConstructWith.pm @@ -1,5 +1,5 @@ package Moose::Exception::MustSupplyAnAccessorTypeToConstructWith; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/MustSupplyAnAttributeToConstructWith.pm b/lib/Moose/Exception/MustSupplyAnAttributeToConstructWith.pm index af0547932..345b2a9e1 100644 --- a/lib/Moose/Exception/MustSupplyAnAttributeToConstructWith.pm +++ b/lib/Moose/Exception/MustSupplyAnAttributeToConstructWith.pm @@ -1,5 +1,5 @@ package Moose::Exception::MustSupplyAnAttributeToConstructWith; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/MustSupplyArrayRefAsCurriedArguments.pm b/lib/Moose/Exception/MustSupplyArrayRefAsCurriedArguments.pm index a6afa14d7..f8e405679 100644 --- a/lib/Moose/Exception/MustSupplyArrayRefAsCurriedArguments.pm +++ b/lib/Moose/Exception/MustSupplyArrayRefAsCurriedArguments.pm @@ -1,5 +1,5 @@ package Moose::Exception::MustSupplyArrayRefAsCurriedArguments; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/MustSupplyPackageNameAndName.pm b/lib/Moose/Exception/MustSupplyPackageNameAndName.pm index d661dab68..05413e753 100644 --- a/lib/Moose/Exception/MustSupplyPackageNameAndName.pm +++ b/lib/Moose/Exception/MustSupplyPackageNameAndName.pm @@ -1,5 +1,5 @@ package Moose::Exception::MustSupplyPackageNameAndName; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/NeedsTypeConstraintUnionForTypeCoercionUnion.pm b/lib/Moose/Exception/NeedsTypeConstraintUnionForTypeCoercionUnion.pm index 3e950e05a..a15555743 100644 --- a/lib/Moose/Exception/NeedsTypeConstraintUnionForTypeCoercionUnion.pm +++ b/lib/Moose/Exception/NeedsTypeConstraintUnionForTypeCoercionUnion.pm @@ -1,5 +1,5 @@ package Moose::Exception::NeedsTypeConstraintUnionForTypeCoercionUnion; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/NeitherAttributeNorAttributeNameIsGiven.pm b/lib/Moose/Exception/NeitherAttributeNorAttributeNameIsGiven.pm index 7fa441c40..ede56e438 100644 --- a/lib/Moose/Exception/NeitherAttributeNorAttributeNameIsGiven.pm +++ b/lib/Moose/Exception/NeitherAttributeNorAttributeNameIsGiven.pm @@ -1,5 +1,5 @@ package Moose::Exception::NeitherAttributeNorAttributeNameIsGiven; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/NeitherClassNorClassNameIsGiven.pm b/lib/Moose/Exception/NeitherClassNorClassNameIsGiven.pm index 0e6dcc6eb..179c0ffe3 100644 --- a/lib/Moose/Exception/NeitherClassNorClassNameIsGiven.pm +++ b/lib/Moose/Exception/NeitherClassNorClassNameIsGiven.pm @@ -1,5 +1,5 @@ package Moose::Exception::NeitherClassNorClassNameIsGiven; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/NeitherRoleNorRoleNameIsGiven.pm b/lib/Moose/Exception/NeitherRoleNorRoleNameIsGiven.pm index 6d9ed5094..7f5d65f66 100644 --- a/lib/Moose/Exception/NeitherRoleNorRoleNameIsGiven.pm +++ b/lib/Moose/Exception/NeitherRoleNorRoleNameIsGiven.pm @@ -1,5 +1,5 @@ package Moose::Exception::NeitherRoleNorRoleNameIsGiven; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/NeitherTypeNorTypeNameIsGiven.pm b/lib/Moose/Exception/NeitherTypeNorTypeNameIsGiven.pm index 300a0a972..4ce14a626 100644 --- a/lib/Moose/Exception/NeitherTypeNorTypeNameIsGiven.pm +++ b/lib/Moose/Exception/NeitherTypeNorTypeNameIsGiven.pm @@ -1,5 +1,5 @@ package Moose::Exception::NeitherTypeNorTypeNameIsGiven; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/NoAttributeFoundInSuperClass.pm b/lib/Moose/Exception/NoAttributeFoundInSuperClass.pm index 7a26a2940..19cb7fb2b 100644 --- a/lib/Moose/Exception/NoAttributeFoundInSuperClass.pm +++ b/lib/Moose/Exception/NoAttributeFoundInSuperClass.pm @@ -1,5 +1,5 @@ package Moose::Exception::NoAttributeFoundInSuperClass; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/NoBodyToInitializeInAnAbstractBaseClass.pm b/lib/Moose/Exception/NoBodyToInitializeInAnAbstractBaseClass.pm index 28ccf2306..57d9b4d19 100644 --- a/lib/Moose/Exception/NoBodyToInitializeInAnAbstractBaseClass.pm +++ b/lib/Moose/Exception/NoBodyToInitializeInAnAbstractBaseClass.pm @@ -1,5 +1,5 @@ package Moose::Exception::NoBodyToInitializeInAnAbstractBaseClass; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/NoCasesMatched.pm b/lib/Moose/Exception/NoCasesMatched.pm index d4e812d69..b06d7b154 100644 --- a/lib/Moose/Exception/NoCasesMatched.pm +++ b/lib/Moose/Exception/NoCasesMatched.pm @@ -1,5 +1,5 @@ package Moose::Exception::NoCasesMatched; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/NoConstraintCheckForTypeConstraint.pm b/lib/Moose/Exception/NoConstraintCheckForTypeConstraint.pm index 07560a723..23805ec68 100644 --- a/lib/Moose/Exception/NoConstraintCheckForTypeConstraint.pm +++ b/lib/Moose/Exception/NoConstraintCheckForTypeConstraint.pm @@ -1,5 +1,5 @@ package Moose::Exception::NoConstraintCheckForTypeConstraint; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/NoDestructorClassSpecified.pm b/lib/Moose/Exception/NoDestructorClassSpecified.pm index d99cb18d0..f89c41478 100644 --- a/lib/Moose/Exception/NoDestructorClassSpecified.pm +++ b/lib/Moose/Exception/NoDestructorClassSpecified.pm @@ -1,5 +1,5 @@ package Moose::Exception::NoDestructorClassSpecified; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/NoImmutableTraitSpecifiedForClass.pm b/lib/Moose/Exception/NoImmutableTraitSpecifiedForClass.pm index 0d7e7ae90..efcae00b1 100644 --- a/lib/Moose/Exception/NoImmutableTraitSpecifiedForClass.pm +++ b/lib/Moose/Exception/NoImmutableTraitSpecifiedForClass.pm @@ -1,5 +1,5 @@ package Moose::Exception::NoImmutableTraitSpecifiedForClass; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/NoParentGivenToSubtype.pm b/lib/Moose/Exception/NoParentGivenToSubtype.pm index ecc60d782..91f551ca1 100644 --- a/lib/Moose/Exception/NoParentGivenToSubtype.pm +++ b/lib/Moose/Exception/NoParentGivenToSubtype.pm @@ -1,5 +1,5 @@ package Moose::Exception::NoParentGivenToSubtype; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/OnlyInstancesCanBeCloned.pm b/lib/Moose/Exception/OnlyInstancesCanBeCloned.pm index 210651ecc..599a91d0e 100644 --- a/lib/Moose/Exception/OnlyInstancesCanBeCloned.pm +++ b/lib/Moose/Exception/OnlyInstancesCanBeCloned.pm @@ -1,5 +1,5 @@ package Moose::Exception::OnlyInstancesCanBeCloned; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/OperatorIsRequired.pm b/lib/Moose/Exception/OperatorIsRequired.pm index 2e7673446..3dbef8d8e 100644 --- a/lib/Moose/Exception/OperatorIsRequired.pm +++ b/lib/Moose/Exception/OperatorIsRequired.pm @@ -1,5 +1,5 @@ package Moose::Exception::OperatorIsRequired; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/OverloadConflictInSummation.pm b/lib/Moose/Exception/OverloadConflictInSummation.pm index 6cab9964d..2982cb9b9 100644 --- a/lib/Moose/Exception/OverloadConflictInSummation.pm +++ b/lib/Moose/Exception/OverloadConflictInSummation.pm @@ -1,5 +1,5 @@ package Moose::Exception::OverloadConflictInSummation; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/OverloadRequiresAMetaClass.pm b/lib/Moose/Exception/OverloadRequiresAMetaClass.pm index 32ad2f5dc..0ede2e48b 100644 --- a/lib/Moose/Exception/OverloadRequiresAMetaClass.pm +++ b/lib/Moose/Exception/OverloadRequiresAMetaClass.pm @@ -1,5 +1,5 @@ package Moose::Exception::OverloadRequiresAMetaClass; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/OverloadRequiresAMetaMethod.pm b/lib/Moose/Exception/OverloadRequiresAMetaMethod.pm index 23cbd18f2..0d7dee566 100644 --- a/lib/Moose/Exception/OverloadRequiresAMetaMethod.pm +++ b/lib/Moose/Exception/OverloadRequiresAMetaMethod.pm @@ -1,5 +1,5 @@ package Moose::Exception::OverloadRequiresAMetaMethod; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/OverloadRequiresAMetaOverload.pm b/lib/Moose/Exception/OverloadRequiresAMetaOverload.pm index 9d40e3acd..ffb366c3f 100644 --- a/lib/Moose/Exception/OverloadRequiresAMetaOverload.pm +++ b/lib/Moose/Exception/OverloadRequiresAMetaOverload.pm @@ -1,5 +1,5 @@ package Moose::Exception::OverloadRequiresAMetaOverload; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/OverloadRequiresAMethodNameOrCoderef.pm b/lib/Moose/Exception/OverloadRequiresAMethodNameOrCoderef.pm index c97ef3a25..7fcd04220 100644 --- a/lib/Moose/Exception/OverloadRequiresAMethodNameOrCoderef.pm +++ b/lib/Moose/Exception/OverloadRequiresAMethodNameOrCoderef.pm @@ -1,5 +1,5 @@ package Moose::Exception::OverloadRequiresAMethodNameOrCoderef; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/OverloadRequiresAnOperator.pm b/lib/Moose/Exception/OverloadRequiresAnOperator.pm index e45db6601..13a7c9ef3 100644 --- a/lib/Moose/Exception/OverloadRequiresAnOperator.pm +++ b/lib/Moose/Exception/OverloadRequiresAnOperator.pm @@ -1,5 +1,5 @@ package Moose::Exception::OverloadRequiresAnOperator; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/OverloadRequiresNamesForCoderef.pm b/lib/Moose/Exception/OverloadRequiresNamesForCoderef.pm index 091786b19..60ab3b305 100644 --- a/lib/Moose/Exception/OverloadRequiresNamesForCoderef.pm +++ b/lib/Moose/Exception/OverloadRequiresNamesForCoderef.pm @@ -1,5 +1,5 @@ package Moose::Exception::OverloadRequiresNamesForCoderef; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/OverrideConflictInComposition.pm b/lib/Moose/Exception/OverrideConflictInComposition.pm index 3d4c720d2..fadc50aed 100644 --- a/lib/Moose/Exception/OverrideConflictInComposition.pm +++ b/lib/Moose/Exception/OverrideConflictInComposition.pm @@ -1,5 +1,5 @@ package Moose::Exception::OverrideConflictInComposition; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/OverrideConflictInSummation.pm b/lib/Moose/Exception/OverrideConflictInSummation.pm index 670171123..26e6e5832 100644 --- a/lib/Moose/Exception/OverrideConflictInSummation.pm +++ b/lib/Moose/Exception/OverrideConflictInSummation.pm @@ -1,5 +1,5 @@ package Moose::Exception::OverrideConflictInSummation; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/PackageDoesNotUseMooseExporter.pm b/lib/Moose/Exception/PackageDoesNotUseMooseExporter.pm index a5c7fc617..9b78809c9 100644 --- a/lib/Moose/Exception/PackageDoesNotUseMooseExporter.pm +++ b/lib/Moose/Exception/PackageDoesNotUseMooseExporter.pm @@ -1,5 +1,5 @@ package Moose::Exception::PackageDoesNotUseMooseExporter; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/PackageNameAndNameParamsNotGivenToWrap.pm b/lib/Moose/Exception/PackageNameAndNameParamsNotGivenToWrap.pm index d0f4550c2..5c2acec01 100644 --- a/lib/Moose/Exception/PackageNameAndNameParamsNotGivenToWrap.pm +++ b/lib/Moose/Exception/PackageNameAndNameParamsNotGivenToWrap.pm @@ -1,5 +1,5 @@ package Moose::Exception::PackageNameAndNameParamsNotGivenToWrap; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/PackagesAndModulesAreNotCachable.pm b/lib/Moose/Exception/PackagesAndModulesAreNotCachable.pm index 85774759e..74234961d 100644 --- a/lib/Moose/Exception/PackagesAndModulesAreNotCachable.pm +++ b/lib/Moose/Exception/PackagesAndModulesAreNotCachable.pm @@ -1,5 +1,5 @@ package Moose::Exception::PackagesAndModulesAreNotCachable; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/ParameterIsNotSubtypeOfParent.pm b/lib/Moose/Exception/ParameterIsNotSubtypeOfParent.pm index b99dd594d..37e5b6388 100644 --- a/lib/Moose/Exception/ParameterIsNotSubtypeOfParent.pm +++ b/lib/Moose/Exception/ParameterIsNotSubtypeOfParent.pm @@ -1,5 +1,5 @@ package Moose::Exception::ParameterIsNotSubtypeOfParent; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/ReferencesAreNotAllowedAsDefault.pm b/lib/Moose/Exception/ReferencesAreNotAllowedAsDefault.pm index 544d9f69d..21e2e814b 100644 --- a/lib/Moose/Exception/ReferencesAreNotAllowedAsDefault.pm +++ b/lib/Moose/Exception/ReferencesAreNotAllowedAsDefault.pm @@ -1,5 +1,5 @@ package Moose::Exception::ReferencesAreNotAllowedAsDefault; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/RequiredAttributeLacksInitialization.pm b/lib/Moose/Exception/RequiredAttributeLacksInitialization.pm index 14fd19aad..803183d3e 100644 --- a/lib/Moose/Exception/RequiredAttributeLacksInitialization.pm +++ b/lib/Moose/Exception/RequiredAttributeLacksInitialization.pm @@ -1,5 +1,5 @@ package Moose::Exception::RequiredAttributeLacksInitialization; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/RequiredAttributeNeedsADefault.pm b/lib/Moose/Exception/RequiredAttributeNeedsADefault.pm index 33ab01dfa..81a5f16b3 100644 --- a/lib/Moose/Exception/RequiredAttributeNeedsADefault.pm +++ b/lib/Moose/Exception/RequiredAttributeNeedsADefault.pm @@ -1,5 +1,5 @@ package Moose::Exception::RequiredAttributeNeedsADefault; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/RequiredMethodsImportedByClass.pm b/lib/Moose/Exception/RequiredMethodsImportedByClass.pm index f6e59090c..ccce246a4 100644 --- a/lib/Moose/Exception/RequiredMethodsImportedByClass.pm +++ b/lib/Moose/Exception/RequiredMethodsImportedByClass.pm @@ -1,5 +1,5 @@ package Moose::Exception::RequiredMethodsImportedByClass; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/RequiredMethodsNotImplementedByClass.pm b/lib/Moose/Exception/RequiredMethodsNotImplementedByClass.pm index 847db5f98..19efd7bf1 100644 --- a/lib/Moose/Exception/RequiredMethodsNotImplementedByClass.pm +++ b/lib/Moose/Exception/RequiredMethodsNotImplementedByClass.pm @@ -1,5 +1,5 @@ package Moose::Exception::RequiredMethodsNotImplementedByClass; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/Role/Attribute.pm b/lib/Moose/Exception/Role/Attribute.pm index 5f9022067..17a25b62e 100644 --- a/lib/Moose/Exception/Role/Attribute.pm +++ b/lib/Moose/Exception/Role/Attribute.pm @@ -1,5 +1,5 @@ package Moose::Exception::Role::Attribute; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose::Role; diff --git a/lib/Moose/Exception/Role/AttributeName.pm b/lib/Moose/Exception/Role/AttributeName.pm index c14d5f557..61c9d557f 100644 --- a/lib/Moose/Exception/Role/AttributeName.pm +++ b/lib/Moose/Exception/Role/AttributeName.pm @@ -1,5 +1,5 @@ package Moose::Exception::Role::AttributeName; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose::Role; diff --git a/lib/Moose/Exception/Role/Class.pm b/lib/Moose/Exception/Role/Class.pm index 49247fed5..097e0f055 100644 --- a/lib/Moose/Exception/Role/Class.pm +++ b/lib/Moose/Exception/Role/Class.pm @@ -1,5 +1,5 @@ package Moose::Exception::Role::Class; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose::Role; diff --git a/lib/Moose/Exception/Role/EitherAttributeOrAttributeName.pm b/lib/Moose/Exception/Role/EitherAttributeOrAttributeName.pm index 3fd9a5106..6d44d99da 100644 --- a/lib/Moose/Exception/Role/EitherAttributeOrAttributeName.pm +++ b/lib/Moose/Exception/Role/EitherAttributeOrAttributeName.pm @@ -1,5 +1,5 @@ package Moose::Exception::Role::EitherAttributeOrAttributeName; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose::Util 'throw_exception'; use Moose::Role; diff --git a/lib/Moose/Exception/Role/Instance.pm b/lib/Moose/Exception/Role/Instance.pm index 09971b815..db2d067a5 100644 --- a/lib/Moose/Exception/Role/Instance.pm +++ b/lib/Moose/Exception/Role/Instance.pm @@ -1,5 +1,5 @@ package Moose::Exception::Role::Instance; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose::Role; diff --git a/lib/Moose/Exception/Role/InstanceClass.pm b/lib/Moose/Exception/Role/InstanceClass.pm index c556180ba..bce796be9 100644 --- a/lib/Moose/Exception/Role/InstanceClass.pm +++ b/lib/Moose/Exception/Role/InstanceClass.pm @@ -1,5 +1,5 @@ package Moose::Exception::Role::InstanceClass; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose::Role; diff --git a/lib/Moose/Exception/Role/InvalidAttributeOptions.pm b/lib/Moose/Exception/Role/InvalidAttributeOptions.pm index 39208f33b..badf3bc65 100644 --- a/lib/Moose/Exception/Role/InvalidAttributeOptions.pm +++ b/lib/Moose/Exception/Role/InvalidAttributeOptions.pm @@ -1,5 +1,5 @@ package Moose::Exception::Role::InvalidAttributeOptions; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose::Role; with 'Moose::Exception::Role::ParamsHash'; diff --git a/lib/Moose/Exception/Role/Method.pm b/lib/Moose/Exception/Role/Method.pm index 4245f6f8f..93058d120 100644 --- a/lib/Moose/Exception/Role/Method.pm +++ b/lib/Moose/Exception/Role/Method.pm @@ -1,5 +1,5 @@ package Moose::Exception::Role::Method; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose::Role; diff --git a/lib/Moose/Exception/Role/ParamsHash.pm b/lib/Moose/Exception/Role/ParamsHash.pm index b13378549..f787f45f1 100644 --- a/lib/Moose/Exception/Role/ParamsHash.pm +++ b/lib/Moose/Exception/Role/ParamsHash.pm @@ -1,5 +1,5 @@ package Moose::Exception::Role::ParamsHash; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose::Role; diff --git a/lib/Moose/Exception/Role/Role.pm b/lib/Moose/Exception/Role/Role.pm index a99c47b91..9818a4f77 100644 --- a/lib/Moose/Exception/Role/Role.pm +++ b/lib/Moose/Exception/Role/Role.pm @@ -1,5 +1,5 @@ package Moose::Exception::Role::Role; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; # use Moose::Util 'throw_exception'; use Moose::Role; diff --git a/lib/Moose/Exception/Role/RoleForCreate.pm b/lib/Moose/Exception/Role/RoleForCreate.pm index 5c2d4a72d..882532821 100644 --- a/lib/Moose/Exception/Role/RoleForCreate.pm +++ b/lib/Moose/Exception/Role/RoleForCreate.pm @@ -1,5 +1,5 @@ package Moose::Exception::Role::RoleForCreate; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose::Role; with 'Moose::Exception::Role::ParamsHash'; diff --git a/lib/Moose/Exception/Role/RoleForCreateMOPClass.pm b/lib/Moose/Exception/Role/RoleForCreateMOPClass.pm index 149bc1163..e5bce64e2 100644 --- a/lib/Moose/Exception/Role/RoleForCreateMOPClass.pm +++ b/lib/Moose/Exception/Role/RoleForCreateMOPClass.pm @@ -1,5 +1,5 @@ package Moose::Exception::Role::RoleForCreateMOPClass; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose::Role; with 'Moose::Exception::Role::ParamsHash'; diff --git a/lib/Moose/Exception/Role/TypeConstraint.pm b/lib/Moose/Exception/Role/TypeConstraint.pm index a8bcb525d..7d0f1034b 100644 --- a/lib/Moose/Exception/Role/TypeConstraint.pm +++ b/lib/Moose/Exception/Role/TypeConstraint.pm @@ -1,5 +1,5 @@ package Moose::Exception::Role::TypeConstraint; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose::Role; diff --git a/lib/Moose/Exception/RoleDoesTheExcludedRole.pm b/lib/Moose/Exception/RoleDoesTheExcludedRole.pm index 34b78d9cd..d614989fe 100644 --- a/lib/Moose/Exception/RoleDoesTheExcludedRole.pm +++ b/lib/Moose/Exception/RoleDoesTheExcludedRole.pm @@ -1,5 +1,5 @@ package Moose::Exception::RoleDoesTheExcludedRole; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/RoleExclusionConflict.pm b/lib/Moose/Exception/RoleExclusionConflict.pm index 5c32079d6..423245125 100644 --- a/lib/Moose/Exception/RoleExclusionConflict.pm +++ b/lib/Moose/Exception/RoleExclusionConflict.pm @@ -1,5 +1,5 @@ package Moose::Exception::RoleExclusionConflict; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/RoleNameRequired.pm b/lib/Moose/Exception/RoleNameRequired.pm index 4f49ece05..234ee5337 100644 --- a/lib/Moose/Exception/RoleNameRequired.pm +++ b/lib/Moose/Exception/RoleNameRequired.pm @@ -1,5 +1,5 @@ package Moose::Exception::RoleNameRequired; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/RoleNameRequiredForMooseMetaRole.pm b/lib/Moose/Exception/RoleNameRequiredForMooseMetaRole.pm index f48749c17..4a03d6bd2 100644 --- a/lib/Moose/Exception/RoleNameRequiredForMooseMetaRole.pm +++ b/lib/Moose/Exception/RoleNameRequiredForMooseMetaRole.pm @@ -1,5 +1,5 @@ package Moose::Exception::RoleNameRequiredForMooseMetaRole; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/RolesDoNotSupportAugment.pm b/lib/Moose/Exception/RolesDoNotSupportAugment.pm index b04b24f8b..7af1c4157 100644 --- a/lib/Moose/Exception/RolesDoNotSupportAugment.pm +++ b/lib/Moose/Exception/RolesDoNotSupportAugment.pm @@ -1,5 +1,5 @@ package Moose::Exception::RolesDoNotSupportAugment; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/RolesDoNotSupportExtends.pm b/lib/Moose/Exception/RolesDoNotSupportExtends.pm index ea5b208ba..9c4dd84d7 100644 --- a/lib/Moose/Exception/RolesDoNotSupportExtends.pm +++ b/lib/Moose/Exception/RolesDoNotSupportExtends.pm @@ -1,5 +1,5 @@ package Moose::Exception::RolesDoNotSupportExtends; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/RolesDoNotSupportInner.pm b/lib/Moose/Exception/RolesDoNotSupportInner.pm index 32c5d90e5..7fe66cb2d 100644 --- a/lib/Moose/Exception/RolesDoNotSupportInner.pm +++ b/lib/Moose/Exception/RolesDoNotSupportInner.pm @@ -1,5 +1,5 @@ package Moose::Exception::RolesDoNotSupportInner; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/RolesDoNotSupportRegexReferencesForMethodModifiers.pm b/lib/Moose/Exception/RolesDoNotSupportRegexReferencesForMethodModifiers.pm index d1059471a..2c37ad0a4 100644 --- a/lib/Moose/Exception/RolesDoNotSupportRegexReferencesForMethodModifiers.pm +++ b/lib/Moose/Exception/RolesDoNotSupportRegexReferencesForMethodModifiers.pm @@ -1,5 +1,5 @@ package Moose::Exception::RolesDoNotSupportRegexReferencesForMethodModifiers; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/RolesInCreateTakesAnArrayRef.pm b/lib/Moose/Exception/RolesInCreateTakesAnArrayRef.pm index bbd59b6cf..0278d3b3a 100644 --- a/lib/Moose/Exception/RolesInCreateTakesAnArrayRef.pm +++ b/lib/Moose/Exception/RolesInCreateTakesAnArrayRef.pm @@ -1,5 +1,5 @@ package Moose::Exception::RolesInCreateTakesAnArrayRef; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/RolesListMustBeInstancesOfMooseMetaRole.pm b/lib/Moose/Exception/RolesListMustBeInstancesOfMooseMetaRole.pm index be3f85c96..2bb44b6c6 100644 --- a/lib/Moose/Exception/RolesListMustBeInstancesOfMooseMetaRole.pm +++ b/lib/Moose/Exception/RolesListMustBeInstancesOfMooseMetaRole.pm @@ -1,5 +1,5 @@ package Moose::Exception::RolesListMustBeInstancesOfMooseMetaRole; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/SingleParamsToNewMustBeHashRef.pm b/lib/Moose/Exception/SingleParamsToNewMustBeHashRef.pm index abae79a3c..3c342cea6 100644 --- a/lib/Moose/Exception/SingleParamsToNewMustBeHashRef.pm +++ b/lib/Moose/Exception/SingleParamsToNewMustBeHashRef.pm @@ -1,5 +1,5 @@ package Moose::Exception::SingleParamsToNewMustBeHashRef; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/TriggerMustBeACodeRef.pm b/lib/Moose/Exception/TriggerMustBeACodeRef.pm index cca377a48..d807a17fa 100644 --- a/lib/Moose/Exception/TriggerMustBeACodeRef.pm +++ b/lib/Moose/Exception/TriggerMustBeACodeRef.pm @@ -1,5 +1,5 @@ package Moose::Exception::TriggerMustBeACodeRef; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/TypeConstraintCannotBeUsedForAParameterizableType.pm b/lib/Moose/Exception/TypeConstraintCannotBeUsedForAParameterizableType.pm index b3075d5c1..95a079727 100644 --- a/lib/Moose/Exception/TypeConstraintCannotBeUsedForAParameterizableType.pm +++ b/lib/Moose/Exception/TypeConstraintCannotBeUsedForAParameterizableType.pm @@ -1,5 +1,5 @@ package Moose::Exception::TypeConstraintCannotBeUsedForAParameterizableType; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/TypeConstraintIsAlreadyCreated.pm b/lib/Moose/Exception/TypeConstraintIsAlreadyCreated.pm index d2b09a790..9b2df9713 100644 --- a/lib/Moose/Exception/TypeConstraintIsAlreadyCreated.pm +++ b/lib/Moose/Exception/TypeConstraintIsAlreadyCreated.pm @@ -1,5 +1,5 @@ package Moose::Exception::TypeConstraintIsAlreadyCreated; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/TypeParameterMustBeMooseMetaType.pm b/lib/Moose/Exception/TypeParameterMustBeMooseMetaType.pm index f31448f90..6945c8d54 100644 --- a/lib/Moose/Exception/TypeParameterMustBeMooseMetaType.pm +++ b/lib/Moose/Exception/TypeParameterMustBeMooseMetaType.pm @@ -1,5 +1,5 @@ package Moose::Exception::TypeParameterMustBeMooseMetaType; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/UnableToCanonicalizeHandles.pm b/lib/Moose/Exception/UnableToCanonicalizeHandles.pm index 50f54c1cc..be1a4ac96 100644 --- a/lib/Moose/Exception/UnableToCanonicalizeHandles.pm +++ b/lib/Moose/Exception/UnableToCanonicalizeHandles.pm @@ -1,5 +1,5 @@ package Moose::Exception::UnableToCanonicalizeHandles; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/UnableToCanonicalizeNonRolePackage.pm b/lib/Moose/Exception/UnableToCanonicalizeNonRolePackage.pm index 89b28ecee..a171cd937 100644 --- a/lib/Moose/Exception/UnableToCanonicalizeNonRolePackage.pm +++ b/lib/Moose/Exception/UnableToCanonicalizeNonRolePackage.pm @@ -1,5 +1,5 @@ package Moose::Exception::UnableToCanonicalizeNonRolePackage; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/UnableToRecognizeDelegateMetaclass.pm b/lib/Moose/Exception/UnableToRecognizeDelegateMetaclass.pm index 873a28ebe..e3049110b 100644 --- a/lib/Moose/Exception/UnableToRecognizeDelegateMetaclass.pm +++ b/lib/Moose/Exception/UnableToRecognizeDelegateMetaclass.pm @@ -1,5 +1,5 @@ package Moose::Exception::UnableToRecognizeDelegateMetaclass; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/UndefinedHashKeysPassedToMethod.pm b/lib/Moose/Exception/UndefinedHashKeysPassedToMethod.pm index e4098a63f..cfd5a62d7 100644 --- a/lib/Moose/Exception/UndefinedHashKeysPassedToMethod.pm +++ b/lib/Moose/Exception/UndefinedHashKeysPassedToMethod.pm @@ -1,5 +1,5 @@ package Moose::Exception::UndefinedHashKeysPassedToMethod; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/UnionCalledWithAnArrayRefAndAdditionalArgs.pm b/lib/Moose/Exception/UnionCalledWithAnArrayRefAndAdditionalArgs.pm index 075a6ac30..e4ffc458a 100644 --- a/lib/Moose/Exception/UnionCalledWithAnArrayRefAndAdditionalArgs.pm +++ b/lib/Moose/Exception/UnionCalledWithAnArrayRefAndAdditionalArgs.pm @@ -1,5 +1,5 @@ package Moose::Exception::UnionCalledWithAnArrayRefAndAdditionalArgs; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/UnionTakesAtleastTwoTypeNames.pm b/lib/Moose/Exception/UnionTakesAtleastTwoTypeNames.pm index fadccce30..957a00db3 100644 --- a/lib/Moose/Exception/UnionTakesAtleastTwoTypeNames.pm +++ b/lib/Moose/Exception/UnionTakesAtleastTwoTypeNames.pm @@ -1,5 +1,5 @@ package Moose::Exception::UnionTakesAtleastTwoTypeNames; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/ValidationFailedForInlineTypeConstraint.pm b/lib/Moose/Exception/ValidationFailedForInlineTypeConstraint.pm index b058a5a5c..57f2564da 100644 --- a/lib/Moose/Exception/ValidationFailedForInlineTypeConstraint.pm +++ b/lib/Moose/Exception/ValidationFailedForInlineTypeConstraint.pm @@ -1,5 +1,5 @@ package Moose::Exception::ValidationFailedForInlineTypeConstraint; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/ValidationFailedForTypeConstraint.pm b/lib/Moose/Exception/ValidationFailedForTypeConstraint.pm index 2e1a2cc8b..962f488b2 100644 --- a/lib/Moose/Exception/ValidationFailedForTypeConstraint.pm +++ b/lib/Moose/Exception/ValidationFailedForTypeConstraint.pm @@ -1,5 +1,5 @@ package Moose::Exception::ValidationFailedForTypeConstraint; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/WrapTakesACodeRefToBless.pm b/lib/Moose/Exception/WrapTakesACodeRefToBless.pm index 35367011d..36aa4f96e 100644 --- a/lib/Moose/Exception/WrapTakesACodeRefToBless.pm +++ b/lib/Moose/Exception/WrapTakesACodeRefToBless.pm @@ -1,5 +1,5 @@ package Moose::Exception::WrapTakesACodeRefToBless; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exception/WrongTypeConstraintGiven.pm b/lib/Moose/Exception/WrongTypeConstraintGiven.pm index 640cd2990..36cbfcc72 100644 --- a/lib/Moose/Exception/WrongTypeConstraintGiven.pm +++ b/lib/Moose/Exception/WrongTypeConstraintGiven.pm @@ -1,5 +1,5 @@ package Moose::Exception::WrongTypeConstraintGiven; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose; extends 'Moose::Exception'; diff --git a/lib/Moose/Exporter.pm b/lib/Moose/Exporter.pm index f0025a447..893aa5d1e 100644 --- a/lib/Moose/Exporter.pm +++ b/lib/Moose/Exporter.pm @@ -1,5 +1,5 @@ package Moose::Exporter; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Attribute.pm b/lib/Moose/Meta/Attribute.pm index 95c68bcd0..2b1c49bd6 100644 --- a/lib/Moose/Meta/Attribute.pm +++ b/lib/Moose/Meta/Attribute.pm @@ -1,7 +1,7 @@ use strict; use warnings; package Moose::Meta::Attribute; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use B (); use Scalar::Util 'blessed'; diff --git a/lib/Moose/Meta/Attribute/Native.pm b/lib/Moose/Meta/Attribute/Native.pm index 84de6e6c2..e7b6dcbf4 100644 --- a/lib/Moose/Meta/Attribute/Native.pm +++ b/lib/Moose/Meta/Attribute/Native.pm @@ -1,7 +1,7 @@ use strict; use warnings; package Moose::Meta::Attribute::Native; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Module::Runtime 'require_module'; diff --git a/lib/Moose/Meta/Attribute/Native/Trait.pm b/lib/Moose/Meta/Attribute/Native/Trait.pm index 909a91503..0603e7517 100644 --- a/lib/Moose/Meta/Attribute/Native/Trait.pm +++ b/lib/Moose/Meta/Attribute/Native/Trait.pm @@ -1,5 +1,5 @@ package Moose::Meta::Attribute::Native::Trait; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose::Role; use Module::Runtime 'require_module'; diff --git a/lib/Moose/Meta/Attribute/Native/Trait/Array.pm b/lib/Moose/Meta/Attribute/Native/Trait/Array.pm index ea27488b1..0be90fdc3 100644 --- a/lib/Moose/Meta/Attribute/Native/Trait/Array.pm +++ b/lib/Moose/Meta/Attribute/Native/Trait/Array.pm @@ -1,5 +1,5 @@ package Moose::Meta::Attribute::Native::Trait::Array; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose::Role; with 'Moose::Meta::Attribute::Native::Trait'; diff --git a/lib/Moose/Meta/Attribute/Native/Trait/Bool.pm b/lib/Moose/Meta/Attribute/Native/Trait/Bool.pm index c96a076e1..4bf7e8dfe 100644 --- a/lib/Moose/Meta/Attribute/Native/Trait/Bool.pm +++ b/lib/Moose/Meta/Attribute/Native/Trait/Bool.pm @@ -1,5 +1,5 @@ package Moose::Meta::Attribute::Native::Trait::Bool; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose::Role; with 'Moose::Meta::Attribute::Native::Trait'; diff --git a/lib/Moose/Meta/Attribute/Native/Trait/Code.pm b/lib/Moose/Meta/Attribute/Native/Trait/Code.pm index 9b896e8a4..8980c5044 100644 --- a/lib/Moose/Meta/Attribute/Native/Trait/Code.pm +++ b/lib/Moose/Meta/Attribute/Native/Trait/Code.pm @@ -1,5 +1,5 @@ package Moose::Meta::Attribute::Native::Trait::Code; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose::Role; with 'Moose::Meta::Attribute::Native::Trait'; diff --git a/lib/Moose/Meta/Attribute/Native/Trait/Counter.pm b/lib/Moose/Meta/Attribute/Native/Trait/Counter.pm index 4f28ce794..041f871a0 100644 --- a/lib/Moose/Meta/Attribute/Native/Trait/Counter.pm +++ b/lib/Moose/Meta/Attribute/Native/Trait/Counter.pm @@ -1,5 +1,5 @@ package Moose::Meta::Attribute::Native::Trait::Counter; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose::Role; with 'Moose::Meta::Attribute::Native::Trait'; diff --git a/lib/Moose/Meta/Attribute/Native/Trait/Hash.pm b/lib/Moose/Meta/Attribute/Native/Trait/Hash.pm index 4d505b290..8ca629d9e 100644 --- a/lib/Moose/Meta/Attribute/Native/Trait/Hash.pm +++ b/lib/Moose/Meta/Attribute/Native/Trait/Hash.pm @@ -1,5 +1,5 @@ package Moose::Meta::Attribute::Native::Trait::Hash; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose::Role; with 'Moose::Meta::Attribute::Native::Trait'; diff --git a/lib/Moose/Meta/Attribute/Native/Trait/Number.pm b/lib/Moose/Meta/Attribute/Native/Trait/Number.pm index 4709d5860..2be9e35aa 100644 --- a/lib/Moose/Meta/Attribute/Native/Trait/Number.pm +++ b/lib/Moose/Meta/Attribute/Native/Trait/Number.pm @@ -1,5 +1,5 @@ package Moose::Meta::Attribute::Native::Trait::Number; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose::Role; with 'Moose::Meta::Attribute::Native::Trait'; diff --git a/lib/Moose/Meta/Attribute/Native/Trait/String.pm b/lib/Moose/Meta/Attribute/Native/Trait/String.pm index 84eea93c8..dafc23448 100644 --- a/lib/Moose/Meta/Attribute/Native/Trait/String.pm +++ b/lib/Moose/Meta/Attribute/Native/Trait/String.pm @@ -1,5 +1,5 @@ package Moose::Meta::Attribute::Native::Trait::String; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Moose::Role; with 'Moose::Meta::Attribute::Native::Trait'; diff --git a/lib/Moose/Meta/Class.pm b/lib/Moose/Meta/Class.pm index b9ee6b0a6..fd0592875 100644 --- a/lib/Moose/Meta/Class.pm +++ b/lib/Moose/Meta/Class.pm @@ -1,5 +1,5 @@ package Moose::Meta::Class; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Class/Immutable/Trait.pm b/lib/Moose/Meta/Class/Immutable/Trait.pm index 73654c1cb..8f220876f 100644 --- a/lib/Moose/Meta/Class/Immutable/Trait.pm +++ b/lib/Moose/Meta/Class/Immutable/Trait.pm @@ -1,5 +1,5 @@ package Moose::Meta::Class::Immutable::Trait; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Instance.pm b/lib/Moose/Meta/Instance.pm index 28fb18c6a..e607515d9 100644 --- a/lib/Moose/Meta/Instance.pm +++ b/lib/Moose/Meta/Instance.pm @@ -1,5 +1,5 @@ package Moose::Meta::Instance; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method.pm b/lib/Moose/Meta/Method.pm index 79419a96a..9f20ddd8b 100644 --- a/lib/Moose/Meta/Method.pm +++ b/lib/Moose/Meta/Method.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor.pm b/lib/Moose/Meta/Method/Accessor.pm index 1bc488af1..10a65f3c2 100644 --- a/lib/Moose/Meta/Method/Accessor.pm +++ b/lib/Moose/Meta/Method/Accessor.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native.pm b/lib/Moose/Meta/Method/Accessor/Native.pm index cf456082c..555df8b46 100644 --- a/lib/Moose/Meta/Method/Accessor/Native.pm +++ b/lib/Moose/Meta/Method/Accessor/Native.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Array.pm b/lib/Moose/Meta/Method/Accessor/Native/Array.pm index b1742627f..b0b2f662e 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Array.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Array.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Array; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Array/Writer.pm b/lib/Moose/Meta/Method/Accessor/Native/Array/Writer.pm index 0965f2aea..4b0fbf9e9 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Array/Writer.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Array/Writer.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Array::Writer; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Array/accessor.pm b/lib/Moose/Meta/Method/Accessor/Native/Array/accessor.pm index b65f4c217..0d7adeca4 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Array/accessor.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Array/accessor.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Array::accessor; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Array/clear.pm b/lib/Moose/Meta/Method/Accessor/Native/Array/clear.pm index 6be3ec240..1f336a105 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Array/clear.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Array/clear.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Array::clear; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Array/count.pm b/lib/Moose/Meta/Method/Accessor/Native/Array/count.pm index fae66aa27..4f1bc6afd 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Array/count.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Array/count.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Array::count; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Array/delete.pm b/lib/Moose/Meta/Method/Accessor/Native/Array/delete.pm index 5fb034e3a..bc5cdef2c 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Array/delete.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Array/delete.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Array::delete; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Array/elements.pm b/lib/Moose/Meta/Method/Accessor/Native/Array/elements.pm index d99414145..f43943250 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Array/elements.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Array/elements.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Array::elements; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Array/first.pm b/lib/Moose/Meta/Method/Accessor/Native/Array/first.pm index d87687074..8ca2539d1 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Array/first.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Array/first.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Array::first; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Array/first_index.pm b/lib/Moose/Meta/Method/Accessor/Native/Array/first_index.pm index 38b237fb2..8fcb76fe4 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Array/first_index.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Array/first_index.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Array::first_index; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Array/get.pm b/lib/Moose/Meta/Method/Accessor/Native/Array/get.pm index 9ec86fa99..37d55b802 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Array/get.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Array/get.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Array::get; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Array/grep.pm b/lib/Moose/Meta/Method/Accessor/Native/Array/grep.pm index 8625058c0..b9150070c 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Array/grep.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Array/grep.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Array::grep; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Array/insert.pm b/lib/Moose/Meta/Method/Accessor/Native/Array/insert.pm index c723fccd4..4d7a8af4c 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Array/insert.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Array/insert.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Array::insert; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Array/is_empty.pm b/lib/Moose/Meta/Method/Accessor/Native/Array/is_empty.pm index a23d057f6..b09df5dd4 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Array/is_empty.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Array/is_empty.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Array::is_empty; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Array/join.pm b/lib/Moose/Meta/Method/Accessor/Native/Array/join.pm index afebbf8c0..ce54d48b1 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Array/join.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Array/join.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Array::join; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Array/map.pm b/lib/Moose/Meta/Method/Accessor/Native/Array/map.pm index c0964ef27..393717143 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Array/map.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Array/map.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Array::map; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Array/natatime.pm b/lib/Moose/Meta/Method/Accessor/Native/Array/natatime.pm index cabbf2f93..396f60c90 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Array/natatime.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Array/natatime.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Array::natatime; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Array/pop.pm b/lib/Moose/Meta/Method/Accessor/Native/Array/pop.pm index c9e6b91aa..b7d6fe535 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Array/pop.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Array/pop.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Array::pop; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Array/push.pm b/lib/Moose/Meta/Method/Accessor/Native/Array/push.pm index e60fe5489..c148ca97b 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Array/push.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Array/push.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Array::push; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Array/reduce.pm b/lib/Moose/Meta/Method/Accessor/Native/Array/reduce.pm index 822a04bf0..d879d1f39 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Array/reduce.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Array/reduce.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Array::reduce; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Array/set.pm b/lib/Moose/Meta/Method/Accessor/Native/Array/set.pm index cbb23f776..5741a07aa 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Array/set.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Array/set.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Array::set; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Array/shallow_clone.pm b/lib/Moose/Meta/Method/Accessor/Native/Array/shallow_clone.pm index 98a996375..98d4efc07 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Array/shallow_clone.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Array/shallow_clone.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Array::shallow_clone; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Array/shift.pm b/lib/Moose/Meta/Method/Accessor/Native/Array/shift.pm index a3b10e881..95ef067b9 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Array/shift.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Array/shift.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Array::shift; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Array/shuffle.pm b/lib/Moose/Meta/Method/Accessor/Native/Array/shuffle.pm index 781ce59b4..2fe72e55e 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Array/shuffle.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Array/shuffle.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Array::shuffle; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Array/sort.pm b/lib/Moose/Meta/Method/Accessor/Native/Array/sort.pm index 11b7c8fa8..63953d211 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Array/sort.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Array/sort.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Array::sort; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Array/sort_in_place.pm b/lib/Moose/Meta/Method/Accessor/Native/Array/sort_in_place.pm index 275958c33..c4bf1a3ce 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Array/sort_in_place.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Array/sort_in_place.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Array::sort_in_place; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Array/splice.pm b/lib/Moose/Meta/Method/Accessor/Native/Array/splice.pm index 7ac31b740..9fb9324a3 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Array/splice.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Array/splice.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Array::splice; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Array/uniq.pm b/lib/Moose/Meta/Method/Accessor/Native/Array/uniq.pm index e4a503e03..fa7383852 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Array/uniq.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Array/uniq.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Array::uniq; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Array/unshift.pm b/lib/Moose/Meta/Method/Accessor/Native/Array/unshift.pm index 7858897e0..db012b24d 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Array/unshift.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Array/unshift.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Array::unshift; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Bool/not.pm b/lib/Moose/Meta/Method/Accessor/Native/Bool/not.pm index cdf7b4ee1..7e6287c22 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Bool/not.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Bool/not.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Bool::not; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Bool/set.pm b/lib/Moose/Meta/Method/Accessor/Native/Bool/set.pm index dd504875e..eaedca05e 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Bool/set.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Bool/set.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Bool::set; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Bool/toggle.pm b/lib/Moose/Meta/Method/Accessor/Native/Bool/toggle.pm index 8c7861591..96a1436bd 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Bool/toggle.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Bool/toggle.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Bool::toggle; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Bool/unset.pm b/lib/Moose/Meta/Method/Accessor/Native/Bool/unset.pm index cd2b45147..401ca80ea 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Bool/unset.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Bool/unset.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Bool::unset; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Code/execute.pm b/lib/Moose/Meta/Method/Accessor/Native/Code/execute.pm index 5626c5258..0adac4c94 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Code/execute.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Code/execute.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Code::execute; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Code/execute_method.pm b/lib/Moose/Meta/Method/Accessor/Native/Code/execute_method.pm index 8ce75c745..6cdccc1a9 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Code/execute_method.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Code/execute_method.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Code::execute_method; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Collection.pm b/lib/Moose/Meta/Method/Accessor/Native/Collection.pm index 7756143e4..8d0fb0ca9 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Collection.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Collection.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Collection; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Counter/Writer.pm b/lib/Moose/Meta/Method/Accessor/Native/Counter/Writer.pm index 9bbd2bfc4..422c7cc16 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Counter/Writer.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Counter/Writer.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Counter::Writer; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Counter/dec.pm b/lib/Moose/Meta/Method/Accessor/Native/Counter/dec.pm index 6e120dc06..32aa1ba62 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Counter/dec.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Counter/dec.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Counter::dec; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Counter/inc.pm b/lib/Moose/Meta/Method/Accessor/Native/Counter/inc.pm index c8b12db8a..2cfa2d353 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Counter/inc.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Counter/inc.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Counter::inc; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Counter/reset.pm b/lib/Moose/Meta/Method/Accessor/Native/Counter/reset.pm index 2b2bdacc6..e0b70da25 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Counter/reset.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Counter/reset.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Counter::reset; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Counter/set.pm b/lib/Moose/Meta/Method/Accessor/Native/Counter/set.pm index 520d3e8fe..1209f14d0 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Counter/set.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Counter/set.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Counter::set; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Hash.pm b/lib/Moose/Meta/Method/Accessor/Native/Hash.pm index ec88832c8..b54b0c8d7 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Hash.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Hash.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Hash; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Hash/Writer.pm b/lib/Moose/Meta/Method/Accessor/Native/Hash/Writer.pm index a39f3d55d..4d2dc40f7 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Hash/Writer.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Hash/Writer.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Hash::Writer; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Hash/accessor.pm b/lib/Moose/Meta/Method/Accessor/Native/Hash/accessor.pm index 419326f62..7e05f08ab 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Hash/accessor.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Hash/accessor.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Hash::accessor; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Hash/clear.pm b/lib/Moose/Meta/Method/Accessor/Native/Hash/clear.pm index fb16b9e1f..9f5f8fe6e 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Hash/clear.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Hash/clear.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Hash::clear; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Hash/count.pm b/lib/Moose/Meta/Method/Accessor/Native/Hash/count.pm index 53e49362d..4977909e3 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Hash/count.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Hash/count.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Hash::count; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Hash/defined.pm b/lib/Moose/Meta/Method/Accessor/Native/Hash/defined.pm index b75317eb3..6442f9e20 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Hash/defined.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Hash/defined.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Hash::defined; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Hash/delete.pm b/lib/Moose/Meta/Method/Accessor/Native/Hash/delete.pm index 8d6b3ab82..7b65bb6ab 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Hash/delete.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Hash/delete.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Hash::delete; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Hash/elements.pm b/lib/Moose/Meta/Method/Accessor/Native/Hash/elements.pm index c0d822a20..3e156d3c4 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Hash/elements.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Hash/elements.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Hash::elements; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Hash/exists.pm b/lib/Moose/Meta/Method/Accessor/Native/Hash/exists.pm index 61b9f4f9b..fb14d38ae 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Hash/exists.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Hash/exists.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Hash::exists; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Hash/get.pm b/lib/Moose/Meta/Method/Accessor/Native/Hash/get.pm index 8889ae34a..c32a31cc3 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Hash/get.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Hash/get.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Hash::get; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Hash/is_empty.pm b/lib/Moose/Meta/Method/Accessor/Native/Hash/is_empty.pm index 11088e847..9d685fbac 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Hash/is_empty.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Hash/is_empty.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Hash::is_empty; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Hash/keys.pm b/lib/Moose/Meta/Method/Accessor/Native/Hash/keys.pm index 26eabaaed..5862f9ebd 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Hash/keys.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Hash/keys.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Hash::keys; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Hash/kv.pm b/lib/Moose/Meta/Method/Accessor/Native/Hash/kv.pm index 4f43c93d6..74b6fa977 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Hash/kv.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Hash/kv.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Hash::kv; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Hash/set.pm b/lib/Moose/Meta/Method/Accessor/Native/Hash/set.pm index 9514092cf..d88e3845d 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Hash/set.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Hash/set.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Hash::set; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Hash/shallow_clone.pm b/lib/Moose/Meta/Method/Accessor/Native/Hash/shallow_clone.pm index 26411c891..137b45448 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Hash/shallow_clone.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Hash/shallow_clone.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Hash::shallow_clone; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Hash/values.pm b/lib/Moose/Meta/Method/Accessor/Native/Hash/values.pm index 97c6d65d0..67081aa32 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Hash/values.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Hash/values.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Hash::values; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Number/abs.pm b/lib/Moose/Meta/Method/Accessor/Native/Number/abs.pm index 658731c98..2c09d41a9 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Number/abs.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Number/abs.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Number::abs; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Number/add.pm b/lib/Moose/Meta/Method/Accessor/Native/Number/add.pm index faa8de3a6..940e0fef2 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Number/add.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Number/add.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Number::add; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Number/div.pm b/lib/Moose/Meta/Method/Accessor/Native/Number/div.pm index e34fa26bb..2929ee106 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Number/div.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Number/div.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Number::div; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Number/mod.pm b/lib/Moose/Meta/Method/Accessor/Native/Number/mod.pm index 10be8f6cd..289074cb4 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Number/mod.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Number/mod.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Number::mod; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Number/mul.pm b/lib/Moose/Meta/Method/Accessor/Native/Number/mul.pm index 21adebbad..4857b02da 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Number/mul.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Number/mul.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Number::mul; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Number/set.pm b/lib/Moose/Meta/Method/Accessor/Native/Number/set.pm index abe4ffce2..771f790f2 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Number/set.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Number/set.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Number::set; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Number/sub.pm b/lib/Moose/Meta/Method/Accessor/Native/Number/sub.pm index 2c0f4af4e..62ebfe9a4 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Number/sub.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Number/sub.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Number::sub; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Reader.pm b/lib/Moose/Meta/Method/Accessor/Native/Reader.pm index aed602132..ecf0ba790 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Reader.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Reader.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Reader; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/String/append.pm b/lib/Moose/Meta/Method/Accessor/Native/String/append.pm index b096263f2..18b0a5bf0 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/String/append.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/String/append.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::String::append; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/String/chomp.pm b/lib/Moose/Meta/Method/Accessor/Native/String/chomp.pm index 3a0f078ae..0c95d123b 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/String/chomp.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/String/chomp.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::String::chomp; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/String/chop.pm b/lib/Moose/Meta/Method/Accessor/Native/String/chop.pm index a095558af..d7ceb0fe7 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/String/chop.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/String/chop.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::String::chop; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/String/clear.pm b/lib/Moose/Meta/Method/Accessor/Native/String/clear.pm index 71d481ddc..f06f13e44 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/String/clear.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/String/clear.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::String::clear; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/String/inc.pm b/lib/Moose/Meta/Method/Accessor/Native/String/inc.pm index 44ca3ddc5..7932f5249 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/String/inc.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/String/inc.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::String::inc; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/String/length.pm b/lib/Moose/Meta/Method/Accessor/Native/String/length.pm index be2b70fad..68f4b9982 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/String/length.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/String/length.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::String::length; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/String/match.pm b/lib/Moose/Meta/Method/Accessor/Native/String/match.pm index 3c94c391a..e261792a8 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/String/match.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/String/match.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::String::match; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/String/prepend.pm b/lib/Moose/Meta/Method/Accessor/Native/String/prepend.pm index 9b4b6dae4..6f4439563 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/String/prepend.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/String/prepend.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::String::prepend; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/String/replace.pm b/lib/Moose/Meta/Method/Accessor/Native/String/replace.pm index d3bc218b4..76680bc0b 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/String/replace.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/String/replace.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::String::replace; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/String/substr.pm b/lib/Moose/Meta/Method/Accessor/Native/String/substr.pm index d86a4064d..176ab0916 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/String/substr.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/String/substr.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::String::substr; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Accessor/Native/Writer.pm b/lib/Moose/Meta/Method/Accessor/Native/Writer.pm index 29cfb6eef..d3e262cbe 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Writer.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Writer.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Accessor::Native::Writer; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Augmented.pm b/lib/Moose/Meta/Method/Augmented.pm index 67c7db74a..723f3e30d 100644 --- a/lib/Moose/Meta/Method/Augmented.pm +++ b/lib/Moose/Meta/Method/Augmented.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Augmented; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Constructor.pm b/lib/Moose/Meta/Method/Constructor.pm index 40bf954e1..8b426bf05 100644 --- a/lib/Moose/Meta/Method/Constructor.pm +++ b/lib/Moose/Meta/Method/Constructor.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Constructor; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Delegation.pm b/lib/Moose/Meta/Method/Delegation.pm index 4869b2f78..7e6292c33 100644 --- a/lib/Moose/Meta/Method/Delegation.pm +++ b/lib/Moose/Meta/Method/Delegation.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Delegation; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Destructor.pm b/lib/Moose/Meta/Method/Destructor.pm index dcdbb3d76..0d9d196e7 100644 --- a/lib/Moose/Meta/Method/Destructor.pm +++ b/lib/Moose/Meta/Method/Destructor.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Destructor; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Meta.pm b/lib/Moose/Meta/Method/Meta.pm index 90fe2ae13..2297d9d4a 100644 --- a/lib/Moose/Meta/Method/Meta.pm +++ b/lib/Moose/Meta/Method/Meta.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Meta; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Method/Overridden.pm b/lib/Moose/Meta/Method/Overridden.pm index 56bc842d6..3d3fc314d 100644 --- a/lib/Moose/Meta/Method/Overridden.pm +++ b/lib/Moose/Meta/Method/Overridden.pm @@ -1,5 +1,5 @@ package Moose::Meta::Method::Overridden; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Mixin/AttributeCore.pm b/lib/Moose/Meta/Mixin/AttributeCore.pm index 563f987db..e4daa04c4 100644 --- a/lib/Moose/Meta/Mixin/AttributeCore.pm +++ b/lib/Moose/Meta/Mixin/AttributeCore.pm @@ -1,5 +1,5 @@ package Moose::Meta::Mixin::AttributeCore; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Object/Trait.pm b/lib/Moose/Meta/Object/Trait.pm index 2b2d87bf7..24afdc2bd 100644 --- a/lib/Moose/Meta/Object/Trait.pm +++ b/lib/Moose/Meta/Object/Trait.pm @@ -1,5 +1,5 @@ package Moose::Meta::Object::Trait; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Scalar::Util qw(blessed); diff --git a/lib/Moose/Meta/Role.pm b/lib/Moose/Meta/Role.pm index 1c327c0da..a2a79f589 100644 --- a/lib/Moose/Meta/Role.pm +++ b/lib/Moose/Meta/Role.pm @@ -1,5 +1,5 @@ package Moose::Meta::Role; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Role/Application.pm b/lib/Moose/Meta/Role/Application.pm index 68997fdad..993e11e69 100644 --- a/lib/Moose/Meta/Role/Application.pm +++ b/lib/Moose/Meta/Role/Application.pm @@ -1,5 +1,5 @@ package Moose::Meta::Role::Application; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Role/Application/RoleSummation.pm b/lib/Moose/Meta/Role/Application/RoleSummation.pm index fd7fd241c..bcffa5592 100644 --- a/lib/Moose/Meta/Role/Application/RoleSummation.pm +++ b/lib/Moose/Meta/Role/Application/RoleSummation.pm @@ -1,5 +1,5 @@ package Moose::Meta::Role::Application::RoleSummation; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Role/Application/ToClass.pm b/lib/Moose/Meta/Role/Application/ToClass.pm index d005cc4d1..72afaabf2 100644 --- a/lib/Moose/Meta/Role/Application/ToClass.pm +++ b/lib/Moose/Meta/Role/Application/ToClass.pm @@ -1,5 +1,5 @@ package Moose::Meta::Role::Application::ToClass; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Role/Application/ToInstance.pm b/lib/Moose/Meta/Role/Application/ToInstance.pm index 174f42daf..ebb707f69 100644 --- a/lib/Moose/Meta/Role/Application/ToInstance.pm +++ b/lib/Moose/Meta/Role/Application/ToInstance.pm @@ -1,5 +1,5 @@ package Moose::Meta::Role::Application::ToInstance; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Role/Application/ToRole.pm b/lib/Moose/Meta/Role/Application/ToRole.pm index 164e34ff1..6ea58dfbc 100644 --- a/lib/Moose/Meta/Role/Application/ToRole.pm +++ b/lib/Moose/Meta/Role/Application/ToRole.pm @@ -1,5 +1,5 @@ package Moose::Meta::Role::Application::ToRole; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Role/Attribute.pm b/lib/Moose/Meta/Role/Attribute.pm index ea86a4710..dac4d8e73 100644 --- a/lib/Moose/Meta/Role/Attribute.pm +++ b/lib/Moose/Meta/Role/Attribute.pm @@ -1,5 +1,5 @@ package Moose::Meta::Role::Attribute; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Role/Composite.pm b/lib/Moose/Meta/Role/Composite.pm index 1cde34bd0..33360a0de 100644 --- a/lib/Moose/Meta/Role/Composite.pm +++ b/lib/Moose/Meta/Role/Composite.pm @@ -1,5 +1,5 @@ package Moose::Meta::Role::Composite; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Role/Method.pm b/lib/Moose/Meta/Role/Method.pm index 3ca880aac..a40c85335 100644 --- a/lib/Moose/Meta/Role/Method.pm +++ b/lib/Moose/Meta/Role/Method.pm @@ -1,5 +1,5 @@ package Moose::Meta::Role::Method; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Role/Method/Conflicting.pm b/lib/Moose/Meta/Role/Method/Conflicting.pm index 2d7cd825e..bbc24c4c4 100644 --- a/lib/Moose/Meta/Role/Method/Conflicting.pm +++ b/lib/Moose/Meta/Role/Method/Conflicting.pm @@ -1,5 +1,5 @@ package Moose::Meta::Role::Method::Conflicting; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/Role/Method/Required.pm b/lib/Moose/Meta/Role/Method/Required.pm index fcb6c96d9..e8c20e0c3 100644 --- a/lib/Moose/Meta/Role/Method/Required.pm +++ b/lib/Moose/Meta/Role/Method/Required.pm @@ -1,5 +1,5 @@ package Moose::Meta::Role::Method::Required; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/TypeCoercion.pm b/lib/Moose/Meta/TypeCoercion.pm index df0084d49..31e9e7249 100644 --- a/lib/Moose/Meta/TypeCoercion.pm +++ b/lib/Moose/Meta/TypeCoercion.pm @@ -1,5 +1,5 @@ package Moose::Meta::TypeCoercion; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/TypeCoercion/Union.pm b/lib/Moose/Meta/TypeCoercion/Union.pm index 4c4553b84..aa360b61d 100644 --- a/lib/Moose/Meta/TypeCoercion/Union.pm +++ b/lib/Moose/Meta/TypeCoercion/Union.pm @@ -1,5 +1,5 @@ package Moose::Meta::TypeCoercion::Union; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/TypeConstraint.pm b/lib/Moose/Meta/TypeConstraint.pm index 43b7295a4..87f4b66cc 100644 --- a/lib/Moose/Meta/TypeConstraint.pm +++ b/lib/Moose/Meta/TypeConstraint.pm @@ -1,5 +1,5 @@ package Moose::Meta::TypeConstraint; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/TypeConstraint/Class.pm b/lib/Moose/Meta/TypeConstraint/Class.pm index 22fabc43f..fe1cd7a58 100644 --- a/lib/Moose/Meta/TypeConstraint/Class.pm +++ b/lib/Moose/Meta/TypeConstraint/Class.pm @@ -1,5 +1,5 @@ package Moose::Meta::TypeConstraint::Class; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/TypeConstraint/DuckType.pm b/lib/Moose/Meta/TypeConstraint/DuckType.pm index c4b1620db..391e19a5b 100644 --- a/lib/Moose/Meta/TypeConstraint/DuckType.pm +++ b/lib/Moose/Meta/TypeConstraint/DuckType.pm @@ -1,5 +1,5 @@ package Moose::Meta::TypeConstraint::DuckType; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/TypeConstraint/Enum.pm b/lib/Moose/Meta/TypeConstraint/Enum.pm index b4a49a836..bf18a58b4 100644 --- a/lib/Moose/Meta/TypeConstraint/Enum.pm +++ b/lib/Moose/Meta/TypeConstraint/Enum.pm @@ -1,5 +1,5 @@ package Moose::Meta::TypeConstraint::Enum; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/TypeConstraint/Parameterizable.pm b/lib/Moose/Meta/TypeConstraint/Parameterizable.pm index 062d49ef3..ebe0efdd1 100644 --- a/lib/Moose/Meta/TypeConstraint/Parameterizable.pm +++ b/lib/Moose/Meta/TypeConstraint/Parameterizable.pm @@ -1,5 +1,5 @@ package Moose::Meta::TypeConstraint::Parameterizable; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/TypeConstraint/Parameterized.pm b/lib/Moose/Meta/TypeConstraint/Parameterized.pm index d0adf4542..606189b49 100644 --- a/lib/Moose/Meta/TypeConstraint/Parameterized.pm +++ b/lib/Moose/Meta/TypeConstraint/Parameterized.pm @@ -1,5 +1,5 @@ package Moose::Meta::TypeConstraint::Parameterized; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/TypeConstraint/Registry.pm b/lib/Moose/Meta/TypeConstraint/Registry.pm index d480256a7..c50146988 100644 --- a/lib/Moose/Meta/TypeConstraint/Registry.pm +++ b/lib/Moose/Meta/TypeConstraint/Registry.pm @@ -1,5 +1,5 @@ package Moose::Meta::TypeConstraint::Registry; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/TypeConstraint/Role.pm b/lib/Moose/Meta/TypeConstraint/Role.pm index bef0949fa..e7629ee58 100644 --- a/lib/Moose/Meta/TypeConstraint/Role.pm +++ b/lib/Moose/Meta/TypeConstraint/Role.pm @@ -1,5 +1,5 @@ package Moose::Meta::TypeConstraint::Role; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Meta/TypeConstraint/Union.pm b/lib/Moose/Meta/TypeConstraint/Union.pm index 03f4d57ca..0bcb26967 100644 --- a/lib/Moose/Meta/TypeConstraint/Union.pm +++ b/lib/Moose/Meta/TypeConstraint/Union.pm @@ -1,5 +1,5 @@ package Moose::Meta::TypeConstraint::Union; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Object.pm b/lib/Moose/Object.pm index 9730544f7..0715aed6a 100644 --- a/lib/Moose/Object.pm +++ b/lib/Moose/Object.pm @@ -1,5 +1,5 @@ package Moose::Object; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Role.pm b/lib/Moose/Role.pm index c88ec5451..b45577fc1 100644 --- a/lib/Moose/Role.pm +++ b/lib/Moose/Role.pm @@ -1,7 +1,7 @@ use strict; use warnings; package Moose::Role; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Scalar::Util (); use Carp (); diff --git a/lib/Moose/Util.pm b/lib/Moose/Util.pm index b333e6bbc..5edf4cf9a 100644 --- a/lib/Moose/Util.pm +++ b/lib/Moose/Util.pm @@ -1,5 +1,5 @@ package Moose::Util; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Util/MetaRole.pm b/lib/Moose/Util/MetaRole.pm index d36040e3f..e34afa32f 100644 --- a/lib/Moose/Util/MetaRole.pm +++ b/lib/Moose/Util/MetaRole.pm @@ -1,5 +1,5 @@ package Moose::Util::MetaRole; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Moose/Util/TypeConstraints.pm b/lib/Moose/Util/TypeConstraints.pm index ba9fef90f..ada963ccb 100644 --- a/lib/Moose/Util/TypeConstraints.pm +++ b/lib/Moose/Util/TypeConstraints.pm @@ -1,5 +1,5 @@ package Moose::Util::TypeConstraints; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use Carp (); use Scalar::Util qw( blessed ); diff --git a/lib/Moose/Util/TypeConstraints/Builtins.pm b/lib/Moose/Util/TypeConstraints/Builtins.pm index 2556e6cc6..f3b32284e 100644 --- a/lib/Moose/Util/TypeConstraints/Builtins.pm +++ b/lib/Moose/Util/TypeConstraints/Builtins.pm @@ -1,5 +1,5 @@ package Moose::Util::TypeConstraints::Builtins; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/Test/Moose.pm b/lib/Test/Moose.pm index 357de71f2..83f6c6d56 100644 --- a/lib/Test/Moose.pm +++ b/lib/Test/Moose.pm @@ -1,5 +1,5 @@ package Test::Moose; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/metaclass.pm b/lib/metaclass.pm index d93f518e3..65b1014aa 100644 --- a/lib/metaclass.pm +++ b/lib/metaclass.pm @@ -1,5 +1,5 @@ package metaclass; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings; diff --git a/lib/oose.pm b/lib/oose.pm index 5e71d1225..ad67b3960 100644 --- a/lib/oose.pm +++ b/lib/oose.pm @@ -1,5 +1,5 @@ package oose; -our $VERSION = '2.2208'; +our $VERSION = '3.0000'; use strict; use warnings;