make github the primary repository
[gitmo/Moose.git] / lib / Class / MOP / Deprecated.pm
CommitLineData
38bf2a25 1package Class::MOP::Deprecated;
2
3use strict;
4use warnings;
5
38bf2a25 6use Package::DeprecationManager -deprecations => {
38bf2a25 7};
8
38bf2a25 91;
10
064a13a3 11# ABSTRACT: Manages deprecation warnings for Class::MOP
12
38bf2a25 13__END__
14
15=pod
16
38bf2a25 17=head1 DESCRIPTION
18
19 use Class::MOP::Deprecated -api_version => $version;
20
21=head1 FUNCTIONS
22
23This module manages deprecation warnings for features that have been
24deprecated in Class::MOP.
25
26If you specify C<< -api_version => $version >>, you can use deprecated features
27without warnings. Note that this special treatment is limited to the package
28that loads C<Class::MOP::Deprecated>.
29
30=cut