summaryrefslogtreecommitdiff
path: root/dist
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgs@consttype.org>2014-08-05 09:27:29 +0200
committerRafael Garcia-Suarez <rgs@consttype.org>2014-08-05 09:27:29 +0200
commit205b8145e88fdb6ead534ed102faa8b6aecbe085 (patch)
treede0b09fc0d3dbb6418995cfc27e8a37962744727 /dist
parent23c3e71c90a1dea6c17d193db263796876d2ac52 (diff)
downloadperl-205b8145e88fdb6ead534ed102faa8b6aecbe085.tar.gz
Fix MANIFEST and Safe's changelog
Diffstat (limited to 'dist')
-rw-r--r--dist/Safe/Changes10
-rw-r--r--dist/Safe/t/safesecurity.t2
2 files changed, 9 insertions, 3 deletions
diff --git a/dist/Safe/Changes b/dist/Safe/Changes
index 66b3b5103b..a48058af74 100644
--- a/dist/Safe/Changes
+++ b/dist/Safe/Changes
@@ -1,6 +1,12 @@
-2.36 Mon Aug 04 2014
+2.38 Mon Aug 04 2014
- critical bugfix: outside packages could be replaced (fix in Opcode)
+2.37 Sat Jun 22 2013
+ - Doc and presentation nits
+
+2.36 Thu May 23 18:08:48 2013
+ - Doc and test fixes for newer perls
+
2.35 Thu Feb 21 2013
- localize %SIG in the Safe compartment
- actually check that we call execution methods on a Safe object
@@ -10,7 +16,7 @@
cf Perl 5 change 42440e3c68e8bafb7e2a74763360939de0fad6be
2.33 Tue Apr 3 2012
- - Don’t eval code under ‘no strict’ (Father Chrysostomos)
+ Don't eval code under "no strict" (Father Chrysostomos)
cf. Perl 5 change 25dc25e774abbe993644899cf4d9f9925a9fb9a8
2.32 Sat Mar 31 2012
diff --git a/dist/Safe/t/safesecurity.t b/dist/Safe/t/safesecurity.t
index 92cd124e67..7cb97127fa 100644
--- a/dist/Safe/t/safesecurity.t
+++ b/dist/Safe/t/safesecurity.t
@@ -25,7 +25,7 @@ my $c = new Safe;
$c->reval(q{
package My::Controller;
sub jopa { return "hacked" }
-
+
My::Controller->jopa; # let it cache package
});