diff options
author | Rafael Garcia-Suarez <rgs@consttype.org> | 2010-01-14 22:45:18 +0100 |
---|---|---|
committer | Rafael Garcia-Suarez <rgs@consttype.org> | 2010-01-14 22:45:18 +0100 |
commit | 83452f8ea6ad77da7b6d12f161eedb3db3e647f3 (patch) | |
tree | f5d229e316a28bc4a862ad63d375ecaaa6039709 /dist | |
parent | ebe5824be753acd9437b38ff9f30083d65211a9b (diff) | |
download | perl-83452f8ea6ad77da7b6d12f161eedb3db3e647f3.tar.gz |
Bump version to 2.21 and add changelog
Diffstat (limited to 'dist')
-rw-r--r-- | dist/Safe/Changes | 4 | ||||
-rw-r--r-- | dist/Safe/META.yml | 2 | ||||
-rw-r--r-- | dist/Safe/Safe.pm | 2 |
3 files changed, 6 insertions, 2 deletions
diff --git a/dist/Safe/Changes b/dist/Safe/Changes index db471a75fd..5e089b4571 100644 --- a/dist/Safe/Changes +++ b/dist/Safe/Changes @@ -1,3 +1,7 @@ +2.21 Thu Jan 14 2010 + fix [perl #72068]: An anonymous sub created by the Safe container will have + bogus arguments passed to it. + 2.20 Tue Dec 1 2009 fix [rt.cpan.org #51574] Safe.pm sort {} bug accessing $a and $b with -Dusethreads (Tim Bunce) diff --git a/dist/Safe/META.yml b/dist/Safe/META.yml index edf9d53661..6495d464b9 100644 --- a/dist/Safe/META.yml +++ b/dist/Safe/META.yml @@ -1,6 +1,6 @@ --- #YAML:1.0 name: Safe -version: 2.20 +version: 2.21 abstract: ~ license: ~ author: ~ diff --git a/dist/Safe/Safe.pm b/dist/Safe/Safe.pm index 41a7d441a9..fd628deda8 100644 --- a/dist/Safe/Safe.pm +++ b/dist/Safe/Safe.pm @@ -6,7 +6,7 @@ use Scalar::Util qw(reftype); use Config qw(%Config); use constant is_usethreads => $Config{usethreads}; -$Safe::VERSION = "2.20"; +$Safe::VERSION = "2.21"; # *** Don't declare any lexicals above this point *** # |