Version 0.90
[catagits/Catalyst-Action-REST.git] / lib / Catalyst / Action / Serialize / JSONP.pm
index c37c06c..82c2d9a 100644 (file)
@@ -4,6 +4,9 @@ use namespace::autoclean;
 
 extends 'Catalyst::Action::Serialize::JSON';
 
+our $VERSION = '0.90';
+$VERSION = eval $VERSION;
+
 after 'execute' => sub {
   my $self = shift;
   my ($controller, $c) = @_;
@@ -25,4 +28,6 @@ after 'execute' => sub {
   }
 };
 
+__PACKAGE__->meta->make_immutable;
+
 1;