summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgs@consttype.org>2010-02-11 22:57:31 +0100
committerRafael Garcia-Suarez <rgs@consttype.org>2010-02-11 22:57:31 +0100
commit95c9bfa39f7dd11d255e4266e33aafe9d36750e0 (patch)
tree0d684c324f263803823f9e25a80ba75831231aea
parentdaaaeea5dc6797674580720f87e137223847c53e (diff)
downloadperl-95c9bfa39f7dd11d255e4266e33aafe9d36750e0.tar.gz
Bump Safe's version to 2.22
-rw-r--r--dist/Safe/Changes4
-rw-r--r--dist/Safe/META.yml2
-rw-r--r--dist/Safe/Safe.pm2
3 files changed, 6 insertions, 2 deletions
diff --git a/dist/Safe/Changes b/dist/Safe/Changes
index 5e089b4571..2af50fd037 100644
--- a/dist/Safe/Changes
+++ b/dist/Safe/Changes
@@ -1,3 +1,7 @@
+2.22 Thu Feb 11 2010
+ fix [perl #72700]: An exception thrown from a closure was getting lost.
+ (Tim Bunce)
+
2.21 Thu Jan 14 2010
fix [perl #72068]: An anonymous sub created by the Safe container will have
bogus arguments passed to it.
diff --git a/dist/Safe/META.yml b/dist/Safe/META.yml
index 6495d464b9..2ffb28302e 100644
--- a/dist/Safe/META.yml
+++ b/dist/Safe/META.yml
@@ -1,6 +1,6 @@
--- #YAML:1.0
name: Safe
-version: 2.21
+version: 2.22
abstract: ~
license: ~
author: ~
diff --git a/dist/Safe/Safe.pm b/dist/Safe/Safe.pm
index 7453f245a9..e8a16aec4d 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.21";
+$Safe::VERSION = "2.22";
# *** Don't declare any lexicals above this point ***
#