1package Moose::Deprecated; 2our $VERSION = '2.2201'; 3 4use strict; 5use warnings; 6 7use Package::DeprecationManager 0.07 -deprecations => { 8 'non-arrayref form of enum' => '2.1100', 9 'non-arrayref form of duck_type' => '2.1100', 10 }, 11 -ignore => [qr/^(?:Class::MOP|Moose)(?:::)?/], 12 ; 13 141; 15 16# ABSTRACT: Manages deprecation warnings for Moose 17 18__END__ 19 20=pod 21 22=encoding UTF-8 23 24=head1 NAME 25 26Moose::Deprecated - Manages deprecation warnings for Moose 27 28=head1 VERSION 29 30version 2.2201 31 32=head1 DESCRIPTION 33 34 use Moose::Deprecated -api_version => $version; 35 36=head1 FUNCTIONS 37 38This module manages deprecation warnings for features that have been 39deprecated in Moose. 40 41If you specify C<< -api_version => $version >>, you can use deprecated features 42without warnings. Note that this special treatment is limited to the package 43that loads C<Moose::Deprecated>. 44 45=head1 AUTHORS 46 47=over 4 48 49=item * 50 51Stevan Little <stevan@cpan.org> 52 53=item * 54 55Dave Rolsky <autarch@urth.org> 56 57=item * 58 59Jesse Luehrs <doy@cpan.org> 60 61=item * 62 63Shawn M Moore <sartak@cpan.org> 64 65=item * 66 67יובל קוג'מן (Yuval Kogman) <nothingmuch@woobling.org> 68 69=item * 70 71Karen Etheridge <ether@cpan.org> 72 73=item * 74 75Florian Ragwitz <rafl@debian.org> 76 77=item * 78 79Hans Dieter Pearcey <hdp@cpan.org> 80 81=item * 82 83Chris Prather <chris@prather.org> 84 85=item * 86 87Matt S Trout <mstrout@cpan.org> 88 89=back 90 91=head1 COPYRIGHT AND LICENSE 92 93This software is copyright (c) 2006 by Infinity Interactive, Inc. 94 95This is free software; you can redistribute it and/or modify it under 96the same terms as the Perl 5 programming language system itself. 97 98=cut 99