Changes note for lexical sub test
[p5sagit/Sub-Name.git] / Changes
1 Revision history for Sub-Name
2
3 {{$NEXT}}
4     - test for renaming lexical subs, which should work on perl 5.22+. (PR#10,
5       Graham Knop)
6
7 0.22      2016-10-17 01:41:42Z (TRIAL RELEASE)
8     - %DB::sub is now populated correctly for sub names with wide characters
9       or nulls. (PR#9: Graham Knop, Leon Timmermans, Reini Urban)
10     - better perl 5.6 compatibility by lowering prereqs of core modules
11
12 0.21      2016-10-02 05:00:12Z
13     - no change since 0.20
14
15 0.20      2016-09-11 00:33:10Z (TRIAL RELEASE)
16     - fix occasional segmentation fault on OpenBSD when malloc randomization
17       causes nameptr to be at the beginning of the page (RT#117072, Alexander
18       Bluhm)
19
20 0.19      2016-08-18 18:52:33Z
21     - fix checking of SvUTF8 flag
22
23 0.18      2016-08-16 01:07:54Z
24     - no changes since 0.17
25
26 0.17      2016-06-27 22:45:27Z (TRIAL RELEASE)
27     - fixed parsing error where the name contains a single colon but the last
28       separator is :: (Leon Timmermans)
29
30 0.16      2016-06-21 03:41:40Z (TRIAL RELEASE)
31     - support binary and unicode symbol names (Leon Timmermans, Aristotle
32       Pagaltzis, Peter Rabbitson, Reini Urban, PR#8)
33
34 0.15      2016-03-15 22:17:38Z
35     - fix uninitialized warning in test on perls < 5.8.6 (RT#104510)
36     - repository moved to the github p5sagit organization (the primary is on
37       shadowcat, mirrored to github)
38
39 0.14      2015-04-24 03:26:54Z
40     - remove mandatory dependencies for optional test
41     - mark the test with B::C as TODO, as it seems to fail frequently and
42       should not block normal installations
43
44 0.13      2015-03-28 06:27:23Z
45     - fix optional test of interaction with B::C that sometimes invalidly
46       failed
47
48 0.12      2014-09-04 07:28:59Z
49     - fix licence in LICENSE and pod
50
51 0.11      2014-08-20 04:44:25Z (TRIAL RELEASE)
52     - move variable declaration to fix warning under
53       -Werror=declaration-after-statement, to allow compilation under MSVC
54       (J.R.Mash, github #3)
55
56 0.10      2014-08-16 00:46:35Z (TRIAL RELEASE)
57     - converted distribution packaging to Dist::Zilla
58
59 0.09      2014-08-09
60     - Copy the contents of the %DB::sub entry if it exists; fixes
61       Devel::NYTProf's anon sub handling (RT#50524, ilmari)
62
63 0.08      2014-08-04
64     - Fix leak when setting a fully-qualified name (ilmari, github#1)
65
66 0.07      2014-07-11
67     - skip optional test if B::C 1.48 is not installed (Reini Urban)
68
69 0.06      2014-07-10
70     - Do not change the string arg in XS, use copy instead. Fixes perlcc -O3
71       RT#96893 (Reini Urban)
72     - add README make target
73     - add more distribution metadata
74
75 0.05      2010-09-07 22:51:00Z
76     - Stop using the padlist to refcount GVs. Instead use regular magic. This
77       allows various modules, including B::Deparse, to safely peek into pads of
78       (re)named subs (Closes RT#42725) (Goro Fuji).
79     - Support perl >= 5.13.3 by using the new CvGV_set interface there
80       (Closes RT#59558).
81     - Stop using the deprecated PL_no_symref (Closes RT#57843).
82
83 0.04      2008-07-18 13:23:00Z
84     - Fixed for perl 5.6 and 5.005 threads (tested)
85
86 0.03      2008-02-20 19:19:00Z
87     - Fixed crash when trying to rename xsubs
88     - As a side-effect, should work with 5.005 threads (untested)
89
90 0.02      2004-08-18 17:51:00Z
91     - Fixed documentation, which erroneously mentioned the existence of
92       two exported functions.