|
1 |
| -0.22 Tuesday 7th February, 2012 |
2 |
| - POD spelling corrections. (rt #22113) |
3 |
| - Add "unimport" to the stoplist. (rt #33914) |
| 1 | +0.23 Wednesday 1st May, 2013 |
| 2 | + Distinguish 'package didn't compile' from 'package has no |
| 3 | + symbols' (Gareth Tunley) |
4 | 4 |
|
5 |
| -0.21 Tuesday 27th July, 2010 |
6 |
| - Add SCALAR to the stoplist (implementaion method for tied |
7 |
| - hashes). Report by David Cantrell. |
| 5 | +0.22 Tuesday 7th February, 2012 |
| 6 | + POD spelling corrections. (rt #22113) |
| 7 | + Add "unimport" to the stoplist. (rt #33914) |
8 | 8 |
|
9 |
| -0.20 Thursday 19th February, 2009 |
10 |
| - Fix t/lib/Fully/Qualified.pm to have a 1; (Zefram) |
11 |
| - Ship t/09whitespace.t - had missed it before |
| 9 | +0.21 Tuesday 27th July, 2010 |
| 10 | + Add SCALAR to the stoplist (implementaion method for tied |
| 11 | + hashes). Report by David Cantrell. |
12 | 12 |
|
13 |
| -0.19 Thursday 13th September, 2007 |
14 |
| - Don't use _CvGV to determine if a sub was imported, there's a handy |
15 |
| - flag - GVf_IMPORTED_CV. Fixes 5.9.5 and future perls |
16 |
| - (solution by Nicholas Clark) |
| 13 | +0.20 Thursday 19th February, 2009 |
| 14 | + Fix t/lib/Fully/Qualified.pm to have a 1; (Zefram) |
| 15 | + Ship t/09whitespace.t - had missed it before |
| 16 | + |
| 17 | +0.19 Thursday 13th September, 2007 |
| 18 | + Don't use _CvGV to determine if a sub was imported, there's a handy |
| 19 | + flag - GVf_IMPORTED_CV. Fixes 5.9.5 and future perls |
| 20 | + (solution by Nicholas Clark) |
17 | 21 |
|
18 | 22 |
|
19 | 23 | 0.18 Friday 4th August, 2006
|
20 |
| - Rewrite _CvGV in terms of B::CV - no xs dependency anymore |
21 |
| - (suggested by Tim Bunce) |
| 24 | + Rewrite _CvGV in terms of B::CV - no xs dependency anymore |
| 25 | + (suggested by Tim Bunce) |
22 | 26 |
|
23 | 27 | Add the (FETCH|MODIFY)_$foo_ATTRIBUTES methods to the private
|
24 |
| - stoplists. (rt #12451) |
| 28 | + stoplists. (rt #12451) |
25 | 29 |
|
26 | 30 | Support documentation where the method name is documented in a
|
27 |
| - ::qualified style (rt #14635) |
| 31 | + ::qualified style (rt #14635) |
28 | 32 |
|
29 |
| - Ignores new (5.8) magic CLONE and CLONE_SKIP methods. (rt #17489) |
| 33 | + Ignores new (5.8) magic CLONE and CLONE_SKIP methods. (rt #17489) |
30 | 34 |
|
31 |
| - Added a nonwhitespace option (Alex - rt #14950) |
| 35 | + Added a nonwhitespace option (Alex - rt #14950) |
32 | 36 |
|
33 | 37 |
|
34 |
| -0.17 Tuesday 23rd November, 2004 |
35 |
| - Fixed a further case reported by Jos Boumans where |
36 |
| - =head2 $self->foo(); was intepreted as documentation for a |
| 38 | +0.17 Tuesday 23rd November, 2004 |
| 39 | + Fixed a further case reported by Jos Boumans where |
| 40 | + =head2 $self->foo(); was intepreted as documentation for a |
37 | 41 | C<foo()> method. (more XS4ALL house style)
|
38 | 42 |
|
39 |
| -0.16 Wednesday 20th October, 2004 |
40 |
| - Fixed a MANIFEST bug. |
41 |
| - Fixed a case reported by Jos Boumans where |
42 |
| - =head2 $self->foo; was intepreted as documentation for a |
| 43 | +0.16 Wednesday 20th October, 2004 |
| 44 | + Fixed a MANIFEST bug. |
| 45 | + Fixed a case reported by Jos Boumans where |
| 46 | + =head2 $self->foo; was intepreted as documentation for a |
43 | 47 | C<foo;> method. (XS4ALL house style)
|
44 |
| - |
45 |
| -0.15 Tuesday 19th October, 2004 |
46 |
| - Correctly ignores tie subroutines (David Cantrell) |
| 48 | + |
| 49 | +0.15 Tuesday 19th October, 2004 |
| 50 | + Correctly ignores tie subroutines (David Cantrell) |
47 | 51 |
|
48 |
| -0.14 Sunday 9th May, 2004 |
49 |
| - Small fix from Andy Lester for when people entity escape |
50 |
| - the greater than in the method call arrow. |
| 52 | +0.14 Sunday 9th May, 2004 |
| 53 | + Small fix from Andy Lester for when people entity escape |
| 54 | + the greater than in the method call arrow. |
51 | 55 |
|
52 |
| -0.13 Monday 29th December, 2003 |
53 |
| - Fixed a case reported by Earle Martin, where |
54 |
| - =head2 C<foo(),bar(),baz()> wasn't working correctly |
| 56 | +0.13 Monday 29th December, 2003 |
| 57 | + Fixed a case reported by Earle Martin, where |
| 58 | + =head2 C<foo(),bar(),baz()> wasn't working correctly |
55 | 59 |
|
56 |
| - Pod and Test fixes by Andy Lester |
| 60 | + Pod and Test fixes by Andy Lester |
57 | 61 |
|
58 |
| - Now we install the pod_cover command line utility. |
| 62 | + Now we install the pod_cover command line utility. |
59 | 63 |
|
60 |
| -0.12 Tuesday 30th September, 2003 |
61 |
| - Added 'trustme' so that you don't have to lie about subs being private |
62 |
| - when the module fails to find their docs. Work by David Cantrell. |
| 64 | +0.12 Tuesday 30th September, 2003 |
| 65 | + Added 'trustme' so that you don't have to lie about subs being private |
| 66 | + when the module fails to find their docs. Work by David Cantrell. |
63 | 67 |
|
64 |
| - Pulled HISTORY out into a Changes file. |
| 68 | + Pulled HISTORY out into a Changes file. |
65 | 69 |
|
66 |
| - Deprecated and gutted Pod::Coverage::Overloader. The ignored |
67 |
| - patterns in the base class now include qr/^\(/ which is all it |
68 |
| - really did only in a stupidly complex manner. |
| 70 | + Deprecated and gutted Pod::Coverage::Overloader. The ignored |
| 71 | + patterns in the base class now include qr/^\(/ which is all it |
| 72 | + really did only in a stupidly complex manner. |
69 | 73 |
|
70 |
| -0.11 2002-02-27 |
71 |
| - Sort the uncovered subs reported from the import form. From a |
72 |
| - bug report from Tels. |
| 74 | +0.11 2002-02-27 |
| 75 | + Sort the uncovered subs reported from the import form. From a |
| 76 | + bug report from Tels. |
73 | 77 |
|
74 |
| -0.10 2002-02-18 |
75 |
| - Added Pod::Coverage::CountParents which counts the Pod |
76 |
| - sections from higher in the inheritance tree (it walks @ISA). |
| 78 | +0.10 2002-02-18 |
| 79 | + Added Pod::Coverage::CountParents which counts the Pod |
| 80 | + sections from higher in the inheritance tree (it walks @ISA). |
77 | 81 |
|
78 |
| - Refactored C<_get_pods> into its own method to allow this. |
| 82 | + Refactored C<_get_pods> into its own method to allow this. |
79 | 83 |
|
80 |
| -0.09 2001-12-17 |
81 |
| - Fixed a typo in mstevens' name (oopsie) |
| 84 | +0.09 2001-12-17 |
| 85 | + Fixed a typo in mstevens' name (oopsie) |
82 | 86 |
|
83 |
| - Added C<examples/script-covered> based on an email exchange. |
| 87 | + Added C<examples/script-covered> based on an email exchange. |
84 | 88 |
|
85 |
| - Modified the import form so that if given one argument it's |
86 |
| - assumed to be the package. From a suggestion by Mark Fowler. |
| 89 | + Modified the import form so that if given one argument it's |
| 90 | + assumed to be the package. From a suggestion by Mark Fowler. |
87 | 91 |
|
88 |
| - Changed tracing to use optimisable constants. |
| 92 | + Changed tracing to use optimisable constants. |
89 | 93 |
|
90 |
| - Added why_unrated. |
| 94 | + Added why_unrated. |
91 | 95 |
|
92 | 96 | 0.08 2001-11-14
|
93 |
| - Paul Johnson beat me to making Pod::Coverage a Devel::Cover |
94 |
| - plugin, so that's one less thing in the TODO section. |
| 97 | + Paul Johnson beat me to making Pod::Coverage a Devel::Cover |
| 98 | + plugin, so that's one less thing in the TODO section. |
95 | 99 |
|
96 |
| - Ran the code through perltidy, made some of the changes it |
97 |
| - suggested. |
| 100 | + Ran the code through perltidy, made some of the changes it |
| 101 | + suggested. |
98 | 102 |
|
99 |
| - Worked over the parsing of the also_private flag to give it more |
100 |
| - consistent semantics |
| 103 | + Worked over the parsing of the also_private flag to give it more |
| 104 | + consistent semantics |
101 | 105 |
|
102 |
| - Assimilated C<examples/pod_cover.t> from Tels |
| 106 | + Assimilated C<examples/pod_cover.t> from Tels |
103 | 107 |
|
104 | 108 | 0.07
|
105 |
| - Implemented _CvGV based upon code from Robin Houston. This |
106 |
| - removes the dependency on Devel::Peek (the CPAN version of |
107 |
| - Devel::Peek doesn't supply CvGV). This also happily makes the |
108 |
| - module work with perl 5.005_03. |
| 109 | + Implemented _CvGV based upon code from Robin Houston. This |
| 110 | + removes the dependency on Devel::Peek (the CPAN version of |
| 111 | + Devel::Peek doesn't supply CvGV). This also happily makes the |
| 112 | + module work with perl 5.005_03. |
109 | 113 |
|
110 |
| - Fixed a bug in the import routine which was preventing the use |
111 |
| - form of derived classes. Reports a module is unrated if |
112 |
| - coverage returns undef. |
| 114 | + Fixed a bug in the import routine which was preventing the use |
| 115 | + form of derived classes. Reports a module is unrated if |
| 116 | + coverage returns undef. |
113 | 117 |
|
114 |
| - Added Pod::Checker::Overloader. |
| 118 | + Added Pod::Checker::Overloader. |
115 | 119 |
|
116 | 120 | 0.06
|
117 |
| - First cut at making inheritance easy. |
118 |
| - Pod::Checker::ExportOnly isa Pod::Checker which only checks |
119 |
| - what Exporter is allowed to hand out. |
| 121 | + First cut at making inheritance easy. |
| 122 | + Pod::Checker::ExportOnly isa Pod::Checker which only checks |
| 123 | + what Exporter is allowed to hand out. |
120 | 124 |
|
121 |
| - Fixed up bad docs from the 0.05 release. |
| 125 | + Fixed up bad docs from the 0.05 release. |
122 | 126 |
|
123 | 127 | 0.05
|
124 |
| - Used Pod::Find to deal with alternative locations for pod |
125 |
| - files. |
| 128 | + Used Pod::Find to deal with alternative locations for pod |
| 129 | + files. |
126 | 130 |
|
127 |
| - Introduced pod_from. |
| 131 | + Introduced pod_from. |
128 | 132 |
|
129 |
| - Merged some patches from Schwern. |
130 |
| - Added in covered. |
| 133 | + Merged some patches from Schwern. |
| 134 | + Added in covered. |
131 | 135 |
|
132 |
| - Assimilated C<examples/check_installed> as contributed by |
133 |
| - Kirrily "Skud" Robert < [email protected]>. |
| 136 | + Assimilated C<examples/check_installed> as contributed by |
| 137 | + Kirrily "Skud" Robert < [email protected]>. |
134 | 138 |
|
135 |
| - Copes with multple functions documented by one section. |
| 139 | + Copes with multple functions documented by one section. |
136 | 140 |
|
137 |
| - Added uncovered as a synonym for naked. |
| 141 | + Added uncovered as a synonym for naked. |
138 | 142 |
|
139 | 143 | 0.04
|
140 |
| - Just 0.03 with a correctly generated README file |
| 144 | + Just 0.03 with a correctly generated README file |
141 | 145 |
|
142 | 146 | 0.03
|
143 |
| - Applied a patch from Dave Rolsky (barely 6 hours after release |
144 |
| - of 0.02) to improve scanning of pod markers. |
| 147 | + Applied a patch from Dave Rolsky (barely 6 hours after release |
| 148 | + of 0.02) to improve scanning of pod markers. |
145 | 149 |
|
146 | 150 | 0.02
|
147 |
| - Fixed up the import form. |
| 151 | + Fixed up the import form. |
148 | 152 |
|
149 |
| - Removed dependency on List::Util. |
| 153 | + Removed dependency on List::Util. |
150 | 154 |
|
151 |
| - Added naked method. |
152 |
| - |
153 |
| - Exposed private configuration. |
| 155 | + Added naked method. |
| 156 | + |
| 157 | + Exposed private configuration. |
154 | 158 |
|
155 | 159 | 0.01
|
156 |
| - As #london.pm invaded Brighton, people taked about |
157 |
| - documentation standards. mstevens scribbled something down, |
158 |
| - richardc coded it, the rest is ponies. |
| 160 | + As #london.pm invaded Brighton, people taked about |
| 161 | + documentation standards. mstevens scribbled something down, |
| 162 | + richardc coded it, the rest is ponies. |
0 commit comments