From: Peter Rabbitson Date: Mon, 26 Dec 2011 13:01:03 +0000 (+0100) Subject: Version 0.22 X-Git-Tag: 0.22^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=ad281e7c28054738f592b887fe92069ae0bd2b95;p=p5sagit%2Fnamespace-clean.git Version 0.22 --- diff --git a/Changes b/Changes index 9ed6044..e472e34 100644 --- 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 index 0000000..3a90c0d --- /dev/null +++ b/MANIFEST.SKIP @@ -0,0 +1 @@ +^(?!lib/|inc/|t/|xt/|Makefile.PL$|README$|MANIFEST$|Changes$|META.(?:yml|json)$) diff --git a/lib/namespace/clean.pm b/lib/namespace/clean.pm index f8fcf21..e73f348 100644 --- a/lib/namespace/clean.pm +++ b/lib/namespace/clean.pm @@ -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; }