1Revision history for Perl extension Safe::Hole.
2
30.01  Thu Oct 21 15:45:24 1999
4	- original version; created by h2xs 1.18
5
60.02  Mon Nov 1 1999
7	- wrap() method added.
8
90.03  Mon Nov 15 1999
10	- change global stash.
11
120.04  Thu Jun 8 2000
13    - add 'require 5.005;'
14    - 1 bug fixed in new()
15
160.05  Mon Jul 10 2000
17    - 1 security bug (wrapped object contains hole object as public hash value)
18      fixed
19    - AUTOLOAD of wrapped package is defined only once
20
210.06  Mon Jul 10 2000
22    - wrapped package name includes hole'd package name
23
240.07  Wed Oct 4 2000
25    - AUTOLOAD does not delegate DESTROY
26
270.08  Wed Jan 17 2001
28    - lincense under the GPL
29
300.09  Thu Jan 15 2004
31    - catch and re-thow exceptions (not doing so seems to cause segfault sometimes)
32    - restore opmask, %INC and @INC (default backward-compatabile mode inhibits this)
33    - test.pl now has some real tests
34    - Safe::Hole::User namespace so that Carp can do the right thing
35    - this version by Brian McCauley <nobull@cpan.org>
36
370.10  Fri Jan 16 2004
38    - don't local(*INC} unless $self->{INC}
39    - this version by Brian McCauley <nobull@cpan.org>
40
410.11 Tue Mar 16 2010
42    - re-structure module to more modern layout. Convert to M::B
43    - re-factor tests to test::more
44    - pod fixes now we're testing them
45    - clean up authors and generate proper META.yml
46    - Fix 5.10 deprecation of defined %hash. Just use %hash to the same effect.