Skip to content

Commit f502590

Browse files
committed
ship 0.23
1 parent 4e3843a commit f502590

File tree

3 files changed

+103
-98
lines changed

3 files changed

+103
-98
lines changed

Changes

Lines changed: 101 additions & 97 deletions
Original file line numberDiff line numberDiff line change
@@ -1,158 +1,162 @@
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)
44

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)
88

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.
1212

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)
1721

1822

1923
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)
2226

2327
Add the (FETCH|MODIFY)_$foo_ATTRIBUTES methods to the private
24-
stoplists. (rt #12451)
28+
stoplists. (rt #12451)
2529

2630
Support documentation where the method name is documented in a
27-
::qualified style (rt #14635)
31+
::qualified style (rt #14635)
2832

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)
3034

31-
Added a nonwhitespace option (Alex - rt #14950)
35+
Added a nonwhitespace option (Alex - rt #14950)
3236

3337

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
3741
C<foo()> method. (more XS4ALL house style)
3842

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
4347
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)
4751

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.
5155

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
5559

56-
Pod and Test fixes by Andy Lester
60+
Pod and Test fixes by Andy Lester
5761

58-
Now we install the pod_cover command line utility.
62+
Now we install the pod_cover command line utility.
5963

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.
6367

64-
Pulled HISTORY out into a Changes file.
68+
Pulled HISTORY out into a Changes file.
6569

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.
6973

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.
7377

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).
7781

78-
Refactored C<_get_pods> into its own method to allow this.
82+
Refactored C<_get_pods> into its own method to allow this.
7983

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)
8286

83-
Added C<examples/script-covered> based on an email exchange.
87+
Added C<examples/script-covered> based on an email exchange.
8488

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.
8791

88-
Changed tracing to use optimisable constants.
92+
Changed tracing to use optimisable constants.
8993

90-
Added why_unrated.
94+
Added why_unrated.
9195

9296
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.
9599

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.
98102

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
101105

102-
Assimilated C<examples/pod_cover.t> from Tels
106+
Assimilated C<examples/pod_cover.t> from Tels
103107

104108
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.
109113

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.
113117

114-
Added Pod::Checker::Overloader.
118+
Added Pod::Checker::Overloader.
115119

116120
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.
120124

121-
Fixed up bad docs from the 0.05 release.
125+
Fixed up bad docs from the 0.05 release.
122126

123127
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.
126130

127-
Introduced pod_from.
131+
Introduced pod_from.
128132

129-
Merged some patches from Schwern.
130-
Added in covered.
133+
Merged some patches from Schwern.
134+
Added in covered.
131135

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]>.
134138

135-
Copes with multple functions documented by one section.
139+
Copes with multple functions documented by one section.
136140

137-
Added uncovered as a synonym for naked.
141+
Added uncovered as a synonym for naked.
138142

139143
0.04
140-
Just 0.03 with a correctly generated README file
144+
Just 0.03 with a correctly generated README file
141145

142146
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.
145149

146150
0.02
147-
Fixed up the import form.
151+
Fixed up the import form.
148152

149-
Removed dependency on List::Util.
153+
Removed dependency on List::Util.
150154

151-
Added naked method.
152-
153-
Exposed private configuration.
155+
Added naked method.
156+
157+
Exposed private configuration.
154158

155159
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.

MANIFEST

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ t/lib/Simple5.pm
2828
t/lib/Simple6.pm
2929
t/lib/Simple7.pm
3030
t/lib/Simple8.pm
31+
t/lib/Simple9.pm
3132
t/lib/Child.pm
3233
t/lib/GrandParent.pm
3334
t/lib/Parent.pm

lib/Pod/Coverage.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use Pod::Find qw(pod_where);
88
BEGIN { defined &TRACE_ALL or eval 'sub TRACE_ALL () { 0 }' }
99

1010
use vars qw/ $VERSION /;
11-
$VERSION = '0.22';
11+
$VERSION = '0.23';
1212

1313
=head1 NAME
1414

0 commit comments

Comments
 (0)