Deprecation warning for Moose::init_meta
[gitmo/Moose.git] / lib / Moose / Deprecated.pm
1 package Moose::Deprecated;
2
3 use strict;
4 use warnings;
5
6 our $VERSION = '1.08';
7 $VERSION = eval $VERSION;
8 our $AUTHORITY = 'cpan:STEVAN';
9
10 use Package::DeprecationManager -deprecations => {
11     'pre-0.94 MetaRole API'       => '0.93',
12     'Moose::Exporter with_caller' => '0.89',
13     'Role type'                   => '0.84',
14     'subtype without sugar'       => '0.72',
15     'type without sugar'          => '0.72',
16     'Moose::init_meta'            => '0.56',
17     },
18     -ignore => [qw( Moose Moose::Exporter Moose::Util::MetaRole )],
19     ;
20
21 1;