From: Vincent Pit Date: Wed, 19 May 2010 00:42:30 +0000 (+0200) Subject: This is 0.12 X-Git-Tag: v0.12^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FScope-Upper.git;a=commitdiff_plain;h=fe6605581cbe68b5935e72c98a8a685379d1f320 This is 0.12 --- diff --git a/Changes b/Changes index 6ba7ec3..1583649 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,11 @@ Revision history for Scope-Upper +0.12 2010-05-19 00:45 UTC + + Fix : Compatibility with perl 5.13. + + Fix : Test failures with perl 5.8.0. + + Fix : A minor leak of SVs when a non array/hash was passed to + localize_elem(). + 0.11 2010-04-16 23:20 UTC + Chg : It's now forbiddent to pass a reference to a non-glob variable as the localization target of localize(), localize_elem() and diff --git a/META.yml b/META.yml index b5959cb..56878c4 100644 --- a/META.yml +++ b/META.yml @@ -1,12 +1,13 @@ --- #YAML:1.0 name: Scope-Upper -version: 0.11 +version: 0.12 abstract: Act on upper scopes. author: - Vincent Pit license: perl distribution_type: module configure_requires: + Config: 0 ExtUtils::MakeMaker: 0 build_requires: base: 0 diff --git a/README b/README index 40d7734..527b31b 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME Scope::Upper - Act on upper scopes. VERSION - Version 0.11 + Version 0.12 SYNOPSIS "reap", "localize", "localize_elem", "localize_delete" and "WORDS" : diff --git a/lib/Scope/Upper.pm b/lib/Scope/Upper.pm index ddbdc81..f6849e5 100644 --- a/lib/Scope/Upper.pm +++ b/lib/Scope/Upper.pm @@ -9,13 +9,13 @@ Scope::Upper - Act on upper scopes. =head1 VERSION -Version 0.11 +Version 0.12 =cut our $VERSION; BEGIN { - $VERSION = '0.11'; + $VERSION = '0.12'; } =head1 SYNOPSIS