diff options
author | Rafael Garcia-Suarez <rgs@consttype.org> | 2009-12-01 00:21:17 +0100 |
---|---|---|
committer | Rafael Garcia-Suarez <rgs@consttype.org> | 2009-12-01 00:26:11 +0100 |
commit | 9d5fa2fef2f7498beeacbefa90966b9242a6fab5 (patch) | |
tree | 552cb2874a94715c0585eae52d35b9896cc29d8d /dist | |
parent | 576b33a19ccaf98d4dfe201d529c55c3747f0cb6 (diff) | |
download | perl-9d5fa2fef2f7498beeacbefa90966b9242a6fab5.tar.gz |
Make the new test work in the core and bump version of Safe to 2.20
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 | ||||
-rw-r--r-- | dist/Safe/t/safesort.t | 6 |
4 files changed, 7 insertions, 7 deletions
diff --git a/dist/Safe/Changes b/dist/Safe/Changes index 36e9943d03..db471a75fd 100644 --- a/dist/Safe/Changes +++ b/dist/Safe/Changes @@ -1,3 +1,7 @@ +2.20 Tue Dec 1 2009 + fix [rt.cpan.org #51574] Safe.pm sort {} bug accessing $a and $b with + -Dusethreads (Tim Bunce) + 2.19 Tue Aug 25 2009 t/safeuniversal.t failure under 5.8.9 (Jerry D. Hedden) diff --git a/dist/Safe/META.yml b/dist/Safe/META.yml index 79cbd4dfcc..edf9d53661 100644 --- a/dist/Safe/META.yml +++ b/dist/Safe/META.yml @@ -1,6 +1,6 @@ --- #YAML:1.0 name: Safe -version: 2.19 +version: 2.20 abstract: ~ license: ~ author: ~ diff --git a/dist/Safe/Safe.pm b/dist/Safe/Safe.pm index 4313263952..eb7d68b71d 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.19"; +$Safe::VERSION = "2.20"; # *** Don't declare any lexicals above this point *** # diff --git a/dist/Safe/t/safesort.t b/dist/Safe/t/safesort.t index 383ad1ab26..2b90afcbb0 100644 --- a/dist/Safe/t/safesort.t +++ b/dist/Safe/t/safesort.t @@ -1,10 +1,6 @@ -#!./perl -w +#!perl -w $|=1; BEGIN { - if($ENV{PERL_CORE}) { - chdir 't' if -d 't'; - @INC = '../lib'; - } require Config; import Config; if ($Config{'extensions'} !~ /\bOpcode\b/ && $Config{'osname'} ne 'VMS') { print "1..0\n"; |