remove hardcoded version strings
[catagits/Catalyst-Action-REST.git] / lib / Catalyst / Action / Serialize / JSON.pm
index b48a213..7d29679 100644 (file)
@@ -6,8 +6,7 @@ use namespace::autoclean;
 extends 'Catalyst::Action';
 use JSON ();
 
-our $VERSION = '0.84';
-$VERSION = eval $VERSION;
+# VERSION
 
 has encoder => (
    is => 'ro',
@@ -39,4 +38,6 @@ sub serialize {
     $self->encoder->encode( $data );
 }
 
+__PACKAGE__->meta->make_immutable;
+
 1;