Bumping version to 0.03
[p5sagit/Devel-GlobalDestruction-XS.git] / lib / Devel / GlobalDestruction / XS.pm
CommitLineData
101e5667 1package Devel::GlobalDestruction::XS;
2use strict;
3use warnings;
4
be8105fe 5our $VERSION = '0.03';
101e5667 6
7require XSLoader;
8XSLoader::load(__PACKAGE__, $VERSION);
9
101; # keep require happy
11
12__END__
13
14=head1 NAME
15
16Devel::GlobalDestruction::XS - Faster implementation of the Devel::GlobalDestruction API
17
18=head1 SYNOPSIS
19
20 use Devel::GlobalDestruction;
21
22=head1 DESCRIPTION
23
24This is an XS backend for L<Devel::GlobalDestruction> and should be used through that module.
25
26=head1 AUTHORS
27
28Yuval Kogman E<lt>nothingmuch@woobling.orgE<gt>
29
30Florian Ragwitz E<lt>rafl@debian.orgE<gt>
31
32Jesse Luehrs E<lt>doy@tozt.netE<gt>
33
34Peter Rabbitson E<lt>ribasushi@cpan.orgE<gt>
35
36Arthur Axel 'fREW' Schmidt E<lt>frioux@gmail.comE<gt>
37
38Elizabeth Mattijsen E<lt>liz@dijkmat.nlE<gt>
39
09248855 40Graham Knop E<lt>haarg@haarg.orgE<gt>
101e5667 41
42=head1 COPYRIGHT
43
09248855 44Copyright (c) 2008 - 2013 the Devel::GlobalDestruction::XS L</AUTHORS> as listed
45above.
46
47=head1 LICENSE
48
49This library is free software and may be distributed under the same terms
50as perl itself.
101e5667 51
52=cut