Bump version requirement for MX::Emulate::CAF to the new release which fixes the...
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Runtime.pm
CommitLineData
a8dc76a1 1package Catalyst::Runtime;
2
3use strict;
341d40d1 4use warnings;
a8dc76a1 5
341d40d1 6BEGIN { require 5.008001; }
7
6415bb4d 8# Remember to update this in Catalyst as well!
9
25f55123 10our $VERSION='5.7013';
a8dc76a1 11
12=head1 NAME
13
14Catalyst::Runtime - Catalyst Runtime version
15
16=head1 SYNOPSIS
17
18See L<Catalyst>.
19
20=head1 DESCRIPTION
21
d4d8fbb8 22This is the primary class for the Catalyst-Runtime distribution, version 5.70.
a8dc76a1 23
24=head1 AUTHOR
25
368427fc 26The Catalyst Core Team - see http://catalyst.perl.org/
a8dc76a1 27
28=head1 COPYRIGHT
29
30This program is free software, you can redistribute it and/or modify it under
31the same terms as Perl itself.
32
33=cut
34
351;