version bump
[p5sagit/Function-Parameters.git] / lib / Function / Parameters.pm
index 97dd88e..d7e6ddd 100644 (file)
@@ -7,11 +7,10 @@ use warnings;
 
 use XSLoader;
 BEGIN {
-       our $VERSION = '0.05_02';
+       our $VERSION = '0.05_03';
        XSLoader::load;
 }
 
-use B::Hooks::EndOfScope qw(on_scope_end);
 use Carp qw(confess);
 use bytes ();
 
@@ -91,12 +90,6 @@ sub unimport {
        }
 }
 
-sub _fini {
-       on_scope_end {
-               xs_fini;
-       };
-}
-
 
 'ok'