Skip to content

Commit 26d53a3

Browse files
committed
Filter-Simple: Correct ambiguous assignment to INSTALLDIRS
Update Changes for versions 0.95, 0.96 and current.
1 parent 49e03d5 commit 26d53a3

File tree

3 files changed

+17
-8
lines changed

3 files changed

+17
-8
lines changed

dist/Filter-Simple/Changes

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,12 @@ Revision history for Perl extension Filter::Simple
5252

5353
- Added automatic preservation of existing &import subroutines
5454

55-
- Added automatic preservation of Exporter semantics
55+
- Added automatic preservation of Exporter semantics
5656

5757

5858
0.76 Fri Nov 16 15:08:42 2001
5959

60-
- Modified call to explicit &import so as to be invoked in original
60+
- Modified call to explicit &import so as to be invoked in original
6161
call context
6262

6363

@@ -90,7 +90,7 @@ Revision history for Perl extension Filter::Simple
9090
- Added Sarathy's patch for \r\n newlinery (thanks Jarkko)
9191

9292
- Added recognition of comments as whitespace (thanks Jeff)
93-
93+
9494
- Added @components variable (thanks Dean)
9595

9696
- Fixed handling of vars in FILTER_ONLY code=>... (thanks Lasse)
@@ -99,16 +99,16 @@ Revision history for Perl extension Filter::Simple
9999

100100
- Added INSTALLDIRS=>core to Makefile.PL
101101

102-
102+
103103
0.82 Mon Jun 27 02:31:06 GMT 2005
104-
104+
105105
- Fixed INSTALLDIRS=>perl in Makefile.PL (thanks all)
106106

107107
- Fixed other problems caused by de-schwernification
108108

109109

110110
0.83 Sat Oct 18 18:51:51 CET 2008
111-
111+
112112
- Updated contact details: Maintained by the Perl5-Porters.
113113
- Some tiny distribution fixes.
114114

@@ -155,4 +155,14 @@ Revision history for Perl extension Filter::Simple
155155
no MyFilter;
156156
In this case it should simply not filter anything.
157157

158+
0.95 Nov 11 2017
159+
160+
- Modernize syntax: 'use vars' -> 'our'
161+
162+
0.96 Nov 25 2019
163+
164+
- Fix for GH #17122 and sanity check for executable_no_comments
165+
166+
0.97 Mon Aug 11 05:35:34 PM EDT 2025
158167

168+
- Correct ambiguous double assignment to INSTALLDIRS in Makefile.PL

dist/Filter-Simple/Makefile.PL

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ use ExtUtils::MakeMaker;
44
WriteMakefile(
55
'NAME' => 'Filter::Simple',
66
'VERSION_FROM' => 'lib/Filter/Simple.pm',
7-
'INSTALLDIRS' => 'perl',
87
'LICENSE' => 'perl_5',
98
'INSTALLDIRS' => ( $] < 5.011 ? 'perl' : 'site' ),
109
'ABSTRACT_FROM' => 'lib/Filter/Simple.pm',

dist/Filter-Simple/lib/Filter/Simple.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package Filter::Simple;
22

33
use Text::Balanced ':ALL';
44

5-
our $VERSION = '0.96';
5+
our $VERSION = '0.97';
66

77
use Filter::Util::Call;
88
use Carp;

0 commit comments

Comments
 (0)