Version 0.22 0.22
Peter Rabbitson [Mon, 26 Dec 2011 13:01:03 +0000 (14:01 +0100)]
Changes
MANIFEST.SKIP [new file with mode: 0644]
lib/namespace/clean.pm

diff --git a/Changes b/Changes
index 9ed6044..e472e34 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,3 +1,4 @@
+    [0.22] (official fix of all the %^H ickyness)
         - Simplify the >= 5.10 PP variant even more - move the hook from
           DESTROY into DELETE
         - Force explicit callback invocation order on 5.8 PP
diff --git a/MANIFEST.SKIP b/MANIFEST.SKIP
new file mode 100644 (file)
index 0000000..3a90c0d
--- /dev/null
@@ -0,0 +1 @@
+^(?!lib/|inc/|t/|xt/|Makefile.PL$|README$|MANIFEST$|Changes$|META.(?:yml|json)$)
index f8fcf21..e73f348 100644 (file)
@@ -6,7 +6,7 @@ use strict;
 use vars qw( $STORAGE_VAR );
 use Package::Stash;
 
-our $VERSION = '0.21_02';
+our $VERSION = '0.22';
 
 $STORAGE_VAR = '__NAMESPACE_CLEAN_STORAGE';
 
@@ -22,7 +22,7 @@ BEGIN {
   } ) {
     B::Hooks::EndOfScope->import('on_scope_end');
   }
-  elsif ($] < 5.009_003_9) {
+  elsif ($] < 5.009_003_1) {
     require namespace::clean::_PP_OSE_5_8;
     *on_scope_end = \&namespace::clean::_PP_OSE_5_8::on_scope_end;
   }