bump version to 0.87
[gitmo/Class-MOP.git] / lib / Class / MOP / Class / Immutable / Class / MOP / Class.pm
1 package Class::MOP::Class::Immutable::Class::MOP::Class;
2
3 use strict;
4 use warnings;
5
6 our $VERSION   = '0.87';
7 $VERSION = eval $VERSION;
8 our $AUTHORITY = 'cpan:STEVAN';
9
10 use base qw(Class::MOP::Class::Immutable::Trait Class::MOP::Class);
11
12 1;
13
14 __END__
15
16 =pod
17
18 =head1 NAME
19
20 Class::MOP::Class::Immutable::Class::MOP::Class - An immutable subclass of Class::MOP::Class
21
22 =head1 DESCRIPTION
23
24 This is an empty class which inherits from
25 L<Class::MOP::Class::Immutable::Trait> and L<Class::MOP::Class>.
26
27 =head1 AUTHOR
28
29 Yuval Kogman E<lt>nothingmuch@cpan.orgE<gt>
30
31 =head1 COPYRIGHT AND LICENSE
32
33 Copyright 2009 by Infinity Interactive, Inc.
34
35 L<http://www.iinteractive.com>
36
37 This library is free software; you can redistribute it and/or modify
38 it under the same terms as Perl itself.
39
40 =cut
41