diff options
author | Rafael Garcia-Suarez <rgs@consttype.org> | 2010-02-22 23:31:46 +0100 |
---|---|---|
committer | Rafael Garcia-Suarez <rgs@consttype.org> | 2010-02-22 23:31:46 +0100 |
commit | f7606119fc09e3d427982fd0c23f9df2cccb8c19 (patch) | |
tree | 1fd35bd3ac0a0661a75013104ff9e5c19f9a1894 /dist/Safe | |
parent | 404e3cecaf943f355728143a462cdf822a1d13f3 (diff) | |
download | perl-f7606119fc09e3d427982fd0c23f9df2cccb8c19.tar.gz |
Bump version to 2.23
Diffstat (limited to 'dist/Safe')
-rw-r--r-- | dist/Safe/Changes | 6 | ||||
-rw-r--r-- | dist/Safe/META.yml | 2 | ||||
-rw-r--r-- | dist/Safe/Safe.pm | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/dist/Safe/Changes b/dist/Safe/Changes index 2af50fd037..147bcf9165 100644 --- a/dist/Safe/Changes +++ b/dist/Safe/Changes @@ -1,3 +1,9 @@ +2.23 Mon Feb 22 2010 + - Install Safe in "site" instead of "perl" for perls > 5.10 + - [perl #72942] Can't perform unicode operations in Safe compartment + (Tim Bunce) + - Add some symbols from version::vxs to the default share + 2.22 Thu Feb 11 2010 fix [perl #72700]: An exception thrown from a closure was getting lost. (Tim Bunce) diff --git a/dist/Safe/META.yml b/dist/Safe/META.yml index 2ffb28302e..4d102cecbc 100644 --- a/dist/Safe/META.yml +++ b/dist/Safe/META.yml @@ -1,6 +1,6 @@ --- #YAML:1.0 name: Safe -version: 2.22 +version: 2.23 abstract: ~ license: ~ author: ~ diff --git a/dist/Safe/Safe.pm b/dist/Safe/Safe.pm index 3eac5d0d5a..38e9f81b5c 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.22"; +$Safe::VERSION = "2.23"; # *** Don't declare any lexicals above this point *** # |